27
loading...
This website collects cookies to deliver better user experience
In a previous article I talked about how to create a virtual environment using anaconda, you can check it out here. 🐍
Here on out I will use conda to refer to anaconda
conda -V
conda update conda
conda search "^python$"
conda create -n yourenvname python
conda create -n yourenvname python=x.x anaconda
# if you are using a UNIX operating system like ubuntu
source activate *yourenvname*
# if you are using windows
conda activate yourenvname
conda install -n yourenvname [package]
conda deactivate
conda env list
conda remove -n yourenvname -all
# on MacOS/Linux:
echo $CONDA_PREFIX
# on Windows:
echo %CONDA_PREFIX%
conda info --envs