Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Run Anaconda pompt in Ubuntu

Tags:

python

ubuntu

I'm using Anaconda with Python 2.7.14 and spyder 3.2.6 On Ubuntu 14.Can you please suggest me how do I access anaconda promt from Ubuntu? By Anaconda prompt I meant this

enter image description here

like image 868
Christina Hughes Avatar asked May 06 '18 17:05

Christina Hughes


2 Answers

To use Anaconda in Ubuntu you only need one terminal of the system.

Anaconda Ubuntu

To see the help commands just type in the terminal

conda
like image 51
Alejandro E. Rendon Avatar answered Oct 06 '22 20:10

Alejandro E. Rendon


I have not found out a way to do it exactly but if you are referring to opening a prompt in the context of anaconda as the conda prompt does, you need to create a conda environment then activate and deactivate it as shown below:

  conda create -n conda_env1
  conda activate conda_env1 or source activate conda_env1
  conda deactivate
like image 38
David Kabii Avatar answered Oct 06 '22 21:10

David Kabii