One, Python installation
1.: https://www.python.org/downloads/release/python-365/
2. Linux system comes with Python2.7, if need to install 3.6 download Compress package python-3.6.5.tgz after compiling:
(1) Install the required dependency module before installing Python
1Yum-y Install zlib zlib-devel2Yum-y Install bzip2 bzip2-devel3Yum-y Install ncurses ncurses-devel4Yum-y InstallReadLine ReadLine-devel5Yum-y Install OpenSSL openssl-devel6Yum-y Install openssl-Static7Yum-y Install XZ Lzma xz-devel8Yum-y Install SQLite sqlite-devel9Yum-y Install gdbm gdbm-develTenYum-y Install TK tk-devel
(2) Decompression
$ TAR-XVZF python-3.6.5.tgz
(3) Configuring the installation directory
$ CD Python-3.6.5
$./configure--prefix=/usr/python
(4) Compiling
$ make
$ make Install
(5) 5-10 minutes installation Complete check
$ python--version
3. Windows and MacOS installation package Click Next (You need to configure environment variables)
4. Get started with a command-line interactive environment that uses Idle,python
5. Recommended IDE Tools
Sublime_text3
Pycharm
Installation of 1.python3 Learning notes