博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python入门系列之一:Centos6下python2.7的安装
阅读量:6761 次
发布时间:2019-06-26

本文共 1842 字,大约阅读时间需要 6 分钟。

1)编译安装python2.7

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[root@mysql-master ~]
# python -V
Python 2.6.6
查看python的版本信息(之前的yum是通过yum安装的)
[root@mysql-master src]
# wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz
[root@mysql-master src]
# file Python-2.7.9.tar.xz 
Python-2.7.9.
tar
.xz: xz compressed data
[root@mysql-master src]
# xz -d Python-2.7.9.tar.xz 
[root@mysql-master src]
# ls
debug  kernels  Python-2.7.9.
tar
[root@mysql-master src]
# tar -xf Python-2.7.9.tar 
[root@mysql-master src]
# cd Python-2.7.9
[root@mysql-master Python-2.7.9]
# ./configure 
[root@mysql-master Python-2.7.9]
# make && make install
[root@mysql-master Python-2.7.9]
# echo $?
0
[root@mysql-master Python-2.7.9]
# /usr/local/bin/python2.7 -V
Python 2.7.9
[root@mysql-master Python-2.7.9]
# mv /usr/bin/python /usr/bin/python2.6
mv
:是否覆盖
"/usr/bin/python2.6"
? 
yes
[root@mysql-master Python-2.7.9]
# ln -s /usr/local/bin/python2.7 /usr/bin/python
[root@mysql-master Python-2.7.9]
# python -V
Python 2.7.9

2)调整yum的配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
因为yum使用会调用python的信息,避免重新安装python后,yum出现报错,编辑yum的文件:
[root@mysql-master Python-2.7.9]
# sed -i 's@#!/usr/bin/python@#!/usr/bin/python2.6@g' /usr/bin/yum
[root@mysql-master Python-2.7.9]
# cat /usr/bin/yum |head
#!/usr/bin/python2.6
import 
sys
try:
    
import 
yum
except ImportError:
    
print >> sys.stderr, 
""
"\
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
   
%s
[root@mysql-master Python-2.7.9]
# python
Python 2.7.9 (default, Nov 16 2016, 19:53:47) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-16)] on linux2
Type 
"help"
"copyright"
"credits" 
or 
"license" 
for 
more 
information.
>>> print 
"hello,world"
hello,world
到此,python2.7的基本安装也完成了。
本文转自 冰冻vs西瓜 51CTO博客,原文链接:http://blog.51cto.com/molewan/1873670,如需转载请自行联系原作者
你可能感兴趣的文章
python开发_tempfile
查看>>
无线网破解软件|一键式破解无线网|BT17软件包下载[笔记本+软件就行]
查看>>
centos 编译安装Apache 2.4
查看>>
Qt 槽函数的使用
查看>>
序言<EntityFramework6.0>
查看>>
libevent安装及使用
查看>>
他们控制的定义-DragButton
查看>>
Matlab图像处理系列1———线性变换和直方图均衡
查看>>
wcf使用task实现异步调用
查看>>
逆向wireshark学习SSL协议算法(转)
查看>>
接受客户端传的inputstream类型转成string类型
查看>>
ASP.NET Core中的依赖注入(1):控制反转(IoC)
查看>>
微信公众帐号开发教程第14篇-自己定义菜单的创建及菜单事件响应
查看>>
CCF系列之Z字形扫描(201412-2)
查看>>
HDU4772(杭州赛区)
查看>>
Servlet中使用RequestDispatcher调派请求--include
查看>>
WinForm 清空界面控件值的小技巧
查看>>
【原创】互联网音视频直播架构方案(技术点)
查看>>
设置textView或者label的行间距方法
查看>>
如何在windows7中使用“专用字符编辑器”中的字
查看>>