终端下载Python包:

$ wget https://www.python/ftp/python/3.6.8/Python-3.6.8.tar.xz	# 下载
$ tar xJf Python-3.6.8.tar.xz	# 解压

终端安装:

$ cd Python-3.6.8/
$ ./configure --with-ssl	# 配置openssl
$ make
$ make install

查看Python:

$ which python3	# 查看安装地址
$ python3 -V	# 查看安装版本

打开Python终端编程:

$ python3

更多Python包下载相关链接点击此处查看!!!

更多推荐

Linux系统安装Python3.6.8(Python安装通用法)