㈠ Centos 6 升級 Python 2.7.3 之後 怎麼裝 python-devel 對應的
這要看你的源是怎麼打包的不過如果你安裝的Python包叫做python27的話,他通常叫做python27-devel。
如果是編譯安裝的話不需要安裝-devel包。
wget http://www.python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz
tar xJf Python-2.7.6.tar.xz
cd Python-2.7.6
./configure --enable-shared --prefix=/usr/local/python2.7
make
make install
echo /usr/local/python2.7/lib > /etc/ld.so.conf.d/python2.7.conf
ldconfig
restorecon -RF /
另外強烈不建議自己構建RPM包,因為百害而無一利,可以試試IUS源。
㈡ Python27是什麼
python目前主要分為2.x和3.x兩種版本,3.x屬於新版本,與2.x有些不兼容,所以目前使用2.x的人還是佔大多數,python27是指python2.7版本,屬於2.x最新版本
㈢ centos中pycrypto模塊的安裝
如果已經成功安裝pycrypto依然找不到Crypto模塊,那麼就將Python安裝路徑下的C:Python27Libsite-packages的crypto文件夾改為大寫即可!!
㈣ python-devel怎麼升級
這要看你的源是怎麼打包的不過如果你安裝的Python包叫做python27的話,他通常叫做python27-devel。
如果是編譯安裝的話不需要安裝-devel包。
wget Python-2.7.6.tar.xz
tar xJf Python-2.7.6.tar.xzcd Python-2.7.6
./configure --enable-shared --prefix=/usr/local/python2.7
make
make installecho /usr/local/python2.7/lib > /etc/ld.so.conf.d/python2.7.conf
ldconfig
restorecon -RF /
另外強烈不建議自己構建RPM包,因為百害而無一利,可以試試IUS源。