Answers for "conda change python version"

1

change python version in conda environment

conda install python=3.7
Posted by: Guest on April-28-2021
3

how to change python version on linux

#Check available versions
ls /usr/bin/python*
#Change the used version 3.5 or 3.7 etc
alias python='/usr/bin/python3.x'
#do this other thing
. ~/.bashrc
#Check version 
python --version
Posted by: Guest on August-07-2020
2

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....
Posted by: Guest on June-22-2020
1

conda set python version

conda search python
 conda install python=3.6.2
Posted by: Guest on October-24-2020
0

change python version of a conda environment

conda activate my_env
conda install python=3.6
Posted by: Guest on July-02-2021

Code answers related to "conda change python version"

Python Answers by Framework

Browse Popular Code Answers by Language