Python由荷兰数学和计算机科学研究学会的吉多·范罗苏姆于1990年代初设计,作为一门叫做ABC语言的替代品。 [1] Python提供了高效的高级数据结构,还能简单有效地面向对象编程。Python语法和动态类型,以及解释型语言的本质,使它成为多数平台上写脚本和快速开发应用的编程语言, [2] 随着版本的不断更新和语言新功能的添加,逐渐被用于独立的、大型项目的开发。
Linux版本:Linux ubuntu 18.04
Python 官网已经把 linux 下载版本更改为已编译好的版本了
第一步 Python 依赖源 数据包安装
PS:Ubuntu apt-get || Cenos yum
apt-get install gcc patch libffi-devel python-devel zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel
第二步 下载 数据包
tar -zxvf Python-3.6.9.tgz
第二步 解压 数据包
tar xfvz Python-3.6.9.tgz
第三步 编译
> cd Python-3.6.9
> ./configure --prefix=/opt/python --with-ssl
> make&make install
第四步 验证版本
> /opt/python/bin/python3 --version
第五步 环境变量配置
> vim ~/.bashrc
> alias python='Python地址 bin目录下的python'
> source ~/.bashrc
pip配置
mkdir ~/.pip
vi ~/.pip/pip.conf
index-url = http://mirrors.aliyun.com/pypi/simple/
常用源
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/