如何安装2.6版本的python-devel?

发布于 2025-01-07 22:55:48 字数 230 浏览 2 评论 0原文

我使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野の 2025-01-14 22:55:49

看起来系统管理的内容超出了应有的要求。以下是一些有用的提示:

  1. http://blog.milford.io/2010/08/new-method-for-installing-python-2-6-4-with-mysql-python-on-centos-5-5/
  2. 如何安装 python2.6-devel 包CentOs 5

但是,如果您只是安装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:

  1. http://blog.milford.io/2010/08/new-method-for-installing-python-2-6-4-with-mysql-python-on-centos-5-5/
  2. How to install python2.6-devel package under CentOs 5

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 标头:

# yum install python26
# yum install python26-devel

这些包不会与python 2.4 的。

If you enable the EPEL repo, you can install python 2.6 and the devel headers using yum:

# yum install python26
# yum install python26-devel

These packages won't then conflict with the python 2.4 ones.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文