第 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 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
没有评论:
发表评论