Answers for "how to set default python version in cmd"

1

change default python version

sudo update-alternatives --config python
Posted by: Guest on December-20-2020
0

how to set default python version linux

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.<version you dont want default> 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.<version# you want default (ex:3.6)> 2

sudo update-alternatives --config python
Posted by: Guest on December-25-2021

Code answers related to "how to set default python version in cmd"

Python Answers by Framework

Browse Popular Code Answers by Language