Anaconda Virtual Environment Tutorial
Hi! This tutorial will guide you step-by-step on How to Create & Manage Anaconda/Conda Virtual Environments on GNU/Linux Systems.
Moreover, you find included Link on How to Get Started with Anaconda PIP on Linux.
Finally, the Guide is just Essential to make you Understand How to Get Started with Conda Virtual Environments.

-
1. Installing Anaconda
How to Install Anaconda Python on Linux
-
2. Making Conda Virtual Env
Then to Create Anaconda Virtual Environment
For an Ordinary one:Copyconda create --name mycondaenv
Confirm with ‘y’.
And instead to make a Virtual Env with a Specific Python Version:Copyconda create -n mycondaenv python=3.7
Again, to make a Virtual Env with a specific Package for instance:
Copyconda create -n mycondaenv scipy
Again, to create a Virtual Env with a specific Version of a Package:
Copyconda create -n mycondaenv scipy=0.15.0
Finally, to create a Virtual Env with Multiple Packages:
Copyconda create -n mycondaenv python=3.7 scipy=0.15.0 astroid babel
-
3. Activating Conda Virtual Env
Next to Activate Anaconda Virtual Environment.
Copyconda activate mycondaenv
But for Conda prior to 4.6 do:
Copysource activate
-
4. Deactivating Conda Virtual Env
.
Copyconda deactivate
Instead, for Conda prior to 4.6 run:
Copysource deactivate
-
5. Getting Started Anaconda PIP
Python Anaconda Virtual Environments Documentation