Answers for "how do i switch the version of python im on"

0

switching versions of python

# Check your python version 
python --version
Python 3.9.0 
# Check the python installation list 
pyenv install --list 
[Whole list available for you, pick yours]
pyenv install 3.9.1
pyenv global 3.9.1 
python --version 
Python 3.9.1
Posted by: Guest on February-01-2021
0

how to change pythoin version

conda install python=3.6
Posted by: Guest on June-08-2021

Code answers related to "how do i switch the version of python im on"

Python Answers by Framework

Browse Popular Code Answers by Language