Useful Anaconda terminal commands

Create Anaconda environment:

conda create --name MyEnv

Activate virtual environment on Windows:

activate MyEnv

Install package

conda install package-name

Activate virtual environment on LINUX, macOS:

source activate MyEnv

Clone base Anaconda environment:

conda create --name MyEnv --clone base

Deactivate current environment:

conda deactivate

List all packages and versions installed in active environment:

conda list

Get a list of all my environments:

conda env list

Run Jupyter notebook in the background:

jupyter notebook &
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x