如何安装2.6版本的python-devel?
我使用centos 5.4,默认的python版本是python2.4,所以我使用python2.6.2.tar.gz编译一个python 2.6版本
,现在我想安装board review项目,它需要安装python-devel包,如果我使用 yum install python-devel,它将安装python2.4相关版本的python-devel,
我如何获得python2.6版本的devel包安装?
i use centos 5.4 ,the default python version is python2.4,so i use the python2.6.2.tar.gz compile a python 2.6 version
and now i want to intstall board review project it need install python-devel package,if i use
yum install python-devel,it will install the python2.4 relevent version python-devel,
how could i get a python2.6 version devel package install?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来系统管理的内容超出了应有的要求。以下是一些有用的提示:
但是,如果您只是安装reviewboard软件,则可以访问http://www.python。 org 下载软件包,执行 ./configure、make 并 make altinstall 到本地版本,然后将该解释器指向您的评论板下载的 setup.py 文件。
Looks like it is more system administration than it should be required. Here are some helpful pointers:
However, if you are just installing reviewboard software, you can go to http://www.python.org download the package, do a ./configure, make and make altinstall to a local version and then point that interpreter to your reviewboard download's setup.py file.
如果启用 EPEL 存储库,则可以使用 yum 安装 python 2.6 和 devel 标头:
这些包不会与python 2.4 的。
If you enable the EPEL repo, you can install python 2.6 and the devel headers using yum:
These packages won't then conflict with the python 2.4 ones.