随笔记:Linux下安装Python

下载Python

在官网上下载安装包,目前地址为:https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz

得到Python-2.7.9.tgz

 

解压

将Python-2.7.9.tgz解压到当前目录下

技术分享
tar zxvf ./Python-2.7.9.tgz -C ./
View Code

 

安装

切换到根目录,开始安装

技术分享
sudo ./configure
sudo make
sudo make install
View Code

 

测试

测试下有木有安装成功,如顺利,能看到以下日志

技术分享
[nicchagil@localhost ~]$ python
Python 2.7.9 (default, Apr  8 2015, 05:59:56)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
View Code

 

hello world范例是必须滴

技术分享
#!/usr/bin/python

print Hello world...;
01.hello_world.py

运行01.hello_world.py

技术分享
python 01.hello_world.py
View Code

 

 退出Python命令行模式

技术分享
quit()
View Code

 

此时,Linux下安装、测试Python告一段落。。。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。