随笔记: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告一段落。。。

你可能感兴趣的:(python)