Conda Install Downgrade Python Version
Answer :
If you want to set specific version, use it like this:
WARNING: This command will overwrite the default python version system-wise
conda install python=3.6
To create environment with a specific version, you can do:
conda create -n $PYTHON36_ENV_NAME python=3.6 anaconda # set custom env name
The
anaconda
at the end allows the env to use all anaconda packages
For more information refere to Anaconda documentation
You can make environments with other versions of Python using this command:
conda create --name py33 python=3.3
source activate py33
Comments
Post a Comment