Change Python Version In Conda Environment Code Example
Example 1: change python version in conda environment
conda install python=3.7
Example 2: anaconda create environment python version
conda create -n myenv python=3.6
Example 3: conda set python version
conda search python conda install python=3.6.2
Example 4: how to downgrade python to 3.7 4 anaconda
conda install python=3.5.0 # or maybe conda install python=2.7.8 # or whatever you want....
Comments
Post a Comment