2014-09-05 3 views
-1

python-devel을 redhat enterprise 6.5에 설치하고 싶습니다. 나는 epel을 설치하고, 다음을 찾는다 :redhat enterprise python-devel을 설치했는데 python-devel을 찾을 수 없습니다

ScientificPython-devel.i686 : The development files for ScientificPython 
ScientificPython-devel.x86_64 : The development files for ScientificPython 
nautilus-python-devel.i686 : Python bindings for Nautilus 
nautilus-python-devel.x86_64 : Python bindings for Nautilus 
qscintilla-python-devel.noarch : Development files for QScintilla PyQt4 bindings 
wxPython-devel.i686 : Development files for wxPython add-on modules 
wxPython-devel.x86_64 : Development files for wxPython add-on modules 

그러나 우리는 python-devel을 찾을 수있다. redhat enterprise에서 python-devel을 설치할 수있는 이유와 방법은 무엇입니까? 나는 또한 rmp 꾸러미를 발견하려고 노력한다. 그러나 나는 발견하지 않았다. 도움이 필요해.

+1

'uname -a'의 결과는 무엇입니까? –

+0

Linux localhost.localdomain 2.6.32-431.el6.x86_64 # 1 SMP Sun Nov 10 22:19:54 EST 2013 x86_64 x86_64 x86_64 GNU/Linux –

답변

0

EPEL은

curl "http://dl.fedoraproject.org/pub/epel/6/x86_64/" | grep python | awk '{ print $6 }' | grep devel 

당신은 CentOS는 패키지를 잡아 그 설치를 시도 할 수 이러한 패키지가 없다? 예를 들어 http://rpmfind.net/linux/rpm2html/search.php?query=python-devel&submit=Search+...&system=centos&arch=

:

curl -o python-devel-2.6.6-51.el6.x86_64.rpm ftp://rpmfind.net/linux/centos/6.5/os/x86_64/Packages/python-devel-2.6.6-51.el6.x86_64.rpm 
yum install python-devel-2.6.6-51.el6.x86_64.rpm 

참고 : 단순히 복사 위의 텍스트를 붙여하지 마십시오. 시스템과 아키텍처에 맞는 패키지를 가져와야합니다.