Answers for "linux default location python"

1

linux set python 3 as default

1. Check current version:
$ python --version
2. get root permissions:
$ sudo su
3. set python3 as default:
$ update-alternatives --install /usr/bin/python python /usr/bin/python3 1
4. Done. (Check by $ python --version)
Posted by: Guest on February-17-2021

Code answers related to "linux default location python"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language