GNU/Linux Making conda Virtual Enviroment Guide
How to Install Anaconda Python and Create conda Virtual Enviroment on GNU/Linux desktops – Step by step Tutorials.
Especially relevant: because to Install Software into a conda Virtual Env is the Recommended practice to follow using the Anaconda Python Suite.
So first, if Not already done, follow the included instructions on How to Install Anaconda Python on GNU/Linux desktops.

-
2. Installing Conda
How to Install Conda Python on GNU/Linux
-
3. Making conda Virtual Env
Then to Create conda Virtual Environment.
conda create -n MYCONDAENV
Then to Activate the Environment:
conda activate MYCONDAENV
And to Deactivate or Exit from the Env:
conda deactivate
So Now I’m truly Happy if My Guide could Help you to Create a conda Virtual Environment!