广告

本站里的文章大部分经过自行整理与测试

2016年5月14日星期六

Linux - Python 新版安装


第 1 个方法 (其它 Linux 版本也能用)

$ wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz
$ tar xzf Python-3.5.1.tgz
$ cd Python-3.5.1
$ su
$ ./configure --prefix=/usr/local  #编译与安装到 /usr/local
$ make altinstall


$ alternatives --list | grep -i python
$ alternatives --install /usr/bin/python python /usr/local/bin/python3.5 2
$ alternatives --install /usr/bin/python python /usr/bin/python2.7 1
$ alternatives --config python


$ python -V


安装 pip

$ apt-get install python-pip   # ubuntu / debian 
$ dnf install python-pip   # fedora 23

$ pip install --upgrade pip
$ pip install --upgrade virtualenv

第 2 个方法 (CentOS / Fedora / Red Hat)
 

$ su
$ yum install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
$ yum search python  # 找找可用的 python 软件包
$ yum install python34

第 3 个方法 (CentOS / Fedora / Red Hat)
 

$ su
$ yum install scl-utils   # 软件库
$ yum search python  # 找找可用的 python 软件包
$ yum install python33
$ scl enable python33 bash
$ easy_install pip


* Fedora 用 dnf 取代 yum

没有评论:

发表评论