Linux的yum依赖自带Python,为防止错误,这里我们再安装一个Python
首先查看默认Python版本
python -V
1、安装gcc,用于编译Python源码
[[email protected]~]# yum install gcc
2、下载源码,https://www.python.org/ftp/python ,解压并切换到源码文件
3、编译安装
[[email protected] tools]# tar xf Python-2.7.10.tar.xz
[[email protected] tools]# ll
total 11968
drwxr-xr-x 17 1000 1000 4096 May 24 00:09 Python-2.7.10
-rw-r--r-- 1 root root 12250696 May 24 00:20 Python-2.7.10.tar.xz
[[email protected] tools]# cd Python-2.7.10
[[email protected] Python-2.7.10]# ./configure && make && make install
4、查看版本
[[email protected] Python-2.7.10]# /usr/local/bin/python2.7 -V
Python 2.7.10
[[email protected] Python-2.7.10]#
5、修改版本morePython版本
[[email protected] Python-2.7.10]#mv /usr/bin/python /usr/bin/python2.6
[[email protected] Python-2.7.10]#ln -s /usr/local/bin/python2.7 /usr/bin/python
6、防止yum执行异常,修改yum使用的Python版本
[[email protected] Python-2.7.10]#vim /usr/bin/yum
将头部#!/usr/bin/python 改为 #!/usr/bin/python2.6
7、第一个Python代码
print ‘hello world!’
>>> print ‘hello world‘
hello world
>>>
8、字符编码
#-*- coding:utf-8 -*-
约定下字符编码都用上面的"# -*- coding:utf-8 -*-"
#!/usr/bin/env python
#-*- coding:utf8 -*-
print ‘hello world!‘
print ‘你好,世界!‘
[[email protected] scripts]# ./hello.py
hello world!
你好,世界!
或者
[[email protected] scripts]# python hello.py
hello world!
你好,世界!
总结:Python默认编码是ASCII,是用一个8位的二进制数字表示所有英文和特殊符号,即ASCII最多有256(2的8次方)种可能,因为没有考虑到中文,所以只能满足英文,如果我们要考虑中文,这里就采用utf8,(了解utf8可以将utf8与Unicode进行对比,他们的关系可以参考:http://alexiter.iteye.com/blog/1533109),在utf8中所有的英文还是用SACII码的形式来存储,中文就用3个字节存储,这样就可以避免存储空间的浪费。
提示:Python2.7是Python2.0的最后一个版本