How to install python2.6-devel package under CentOs 5

后端 未结 3 1286
你的背包
你的背包 2020-12-18 01:56

I need to install mysql-python under python2.6. mysql-python package needs python2.6-devel package that depends on the libpython2.6.so.1.0(64bit) I found on the net some py

3条回答
  •  误落风尘
    2020-12-18 02:29

    On CentOS 6.2, I solved the problem by finding the right version of the python-devel :

    yum search python | grep -i devel
    

    Then I installed :

    yum  install python-devel.x86_64
    

    And :

    easy_install psycopg2
    

提交回复
热议问题