导语:
本文主要介绍了关于ubuntu安装python3的几种方式的相关知识,希望可以帮到处于编程学习途中的小伙伴
python在ubuntu下有几种安装方法:
-
通过ubuntu官方的apt工具包安装
-
通过PPA(Personal Package Archive) 的apt工具包安装
-
通过编译python源代码安装
1、通过ubuntu官方的apt工具包安装
sudo apt-get install python2.7
sudo apt-get install python3.4
2、从PPA(Personal Package Archives) 安装apt工具包
$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:fkrull/deadsnakes
$ sudo apt-get update
$ sudo apt-get install python2.7
3、从源代码编译安装python
$ 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是目标文件下载的绝对路径。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ c语言和python有什么区别08/12
- ♥ python切片符号的使用01/06
- ♥ python字符串组合运算符的使用10/15
- ♥ python中的xlwt是什么10/11
- ♥ 如何用python tkinter插入和显示图片?12/20
- ♥ python编程软件是什么08/11
内容反馈