- 通过ubuntu官方的apt工具包安装
- 通过PPA(Personal Package Archive) 的apt工具包安装
- 通过编译python源代码安装
通过ubuntu官方的apt工具包安装
1
2
|
sudo apt-get install python2.7 sudo apt-get install python3.4 |
安装完成后, 可以用下面的命令进行确认
1
2
3
4
5
|
xx@ada:~$ python2.7 --version Python 2.7.8 xx@ada:~$ python3.4 --version Python 3.4.2 xx@ada:~$ |
从PPA(Personal Package Archives) 安装apt工具包
1
2
3
4
|
$ sudo apt-get install python-software-properties $ sudo add-apt-repository ppa:fkrull /deadsnakes $ sudo apt-get update $ sudo apt-get install python2.7 |
类似使用apt工具包安装python的工具虽然简单, 但有时不一定能够安装到最新版本。因此, 在python出现重要更新时,我们最好学会以从源代码直接编译安装python2.7.
从源代码编译安装python
1
2
3
4
5
6
|
$ wget -c https: //www .python.org /ftp/python/2 .7.9 /Python-2 .7.9.tgz $ tar -xzvf Python-2.7.9.tgz $ cd Python-2.7.9/ $ LDFLAGS= "-L/usr/lib/x86_64-linux-gnu" . /configure $ make $ sudo make install |
其中, 上面的wget -c (url)是下载命令,参数-c表示支持断点下载, url是目标文件下载的绝对路径“-L/usr/lib/x86_64-linux-gnu”中的x86_64-linux-gnu在/usr/lib/下可以找到, 这是x86_64可以看出我的系统是64的, 这里根据自己的系统进行键入。
好了, 安装完后我们检测下, 终端键入python --version, 回车, 再键入which python
1
2
3
4
5
|
xx@ada:~$ python --version Python 2.7.9 xx@ada:~$ which python /usr/local/bin/python xx@ada:~$ |
可见, python2.7.9安装成功,并且发现我们默认的python版本变成了python2.7.9。这是因为操作系统在搜索命令时, 是按照PATH环境变量的顺序依次进行搜索的,/usr/local/bin/下的python会比/usr/bin/下的python优先搜索到, 并作为默认的python版本。
那么我ubuntu14.10下就有三个版本的python,分别是python2.7.8, python2.7.9, python3.4.2, 如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
xx@ada:~$ python --version Python 2.7.9 xx@ada:~$ python2.7 --version Python 2.7.9 xx@ada:~$ python3.4 --version Python 3.4.2 xx@ada:~$ python2.7 Python 2.7.9 (default, Jan 3 2015, 03:27:08) [GCC 4.9.1] on linux2 Type "help" , "copyright" , "credits" or "license" for more information. >>> exit () xx@ada:~$ |
当然, 我们也可以指定python的路径, 为查看python的版本, 如下:
1
2
3
4
5
6
7
8
9
10
11
|
xx@ada:~$ / usr / bin / python - - version Python 2.7 . 8 xx@ada:~$ / usr / bin / python2. 7 - - version Python 2.7 . 8 xx@ada:~$ / usr / bin / python3. 4 - - version Python 3.4 . 2 xx@ada:~$ / usr / local / bin / python - - version Python 2.7 . 9 xx@ada:~$ / usr / local / bin / python2. 7 - - version Python 2.7 . 9 xx@ada:~$ |
至此,我们就已经介绍完了python在ubuntu下的三种安装方法。
OK, Enjoy it!!!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/huanhuanq1209/article/details/72673236