TranslateProject/sources/tech/20170609 Python 3.6 - install latest version into Linux Mint.md
2017-07-03 11:41:05 +08:00

3.9 KiB

Python 3.6 - install latest version into Linux Mint

Python 3.6  - install latest version into Linux Mint Python is one of the most popular programming languages for Linux. It is written many different tools and libraries. In addition, Python is popular among developers because it is very easy and quick programming, and it's actually simple to master. If you have installed the operating system Linux mint, you are learning the programming language Python and want to work with the latest version, then this article is for you. Now I have installed Linux Mint 18.1 and the default installed version 2.7 and 3.5. You can check this with commands

TerminalShekin@mylinuxmintpc~$python -V
python2 -V
python3 -V

Installation latest Python 3.6 version into Linux Mint:

TerminalShekin@mylinuxmintpc~$sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt update
sudo apt install python3.6

Check the version of the installed Python 3.6

TerminalShekin@mylinuxmintpc~$python3.6 -V

Please note that the old version is still here, it still available by the name of python3and the new can now be loaded with the command python3.6. If you want to use this version instead of the 3.5 to run all the programs, there is a utility update-alternatives. But if you try to get a list of possibilities, we get the error: Python 3.6  - install latest version into Linux Mint This is normal, you need to first setup what files for that answer, because the maintainers did not care about it :

TerminalShekin@mylinuxmintpc~$sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 1
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2

Now look again:

TerminalShekin@mylinuxmintpc~$update-alternatives --list python3

Python 3.6  - install latest version into Linux Mint Now we can choose the required version and switch as needed. For settings use the config command:

TerminalShekin@mylinuxmintpc~$sudo update-alternatives --config python3

Python 3.6  - install latest version into Linux Mint In the prompt you need to specify the program number you want to use by default. Be careful with a selection of versions, not to touch the python (python2), just use python3, as I said, Python 2.7 written in a variety of system tools, and if you try to run them the wrong version of the interpreter, then nothing happens.May the Force be with you, Good Luck!!! python.org


via: https://mintguide.org/other/794-python-3-6-install-latest-version-into-linux-mint.html

作者: Shekin 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出