在python 3.4.3中安装cx_oracle 5.2失败

时间:2015-07-15 14:52:13

标签: python-3.x oracle11g

我试图通过pip在CentOS上的python 3.4.3中安装cx_oracle,但它失败了。

$ sudo pip3.4 install cx_oracle
Collecting cx-oracle
  Using cached cx_Oracle-5.2.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 20, in <module>
      File "/tmp/pip-build-m0e47l0_/cx-oracle/setup.py", line 168, in <module>
        instantClientRPMLib = FindInstantClientRPMLib()
      File "/tmp/pip-build-m0e47l0_/cx-oracle/setup.py", line 130, in FindInstantClientRPMLib
        versions.sort(key = lambda x: [int(s) for s in x.split(".")])
      File "/tmp/pip-build-m0e47l0_/cx-oracle/setup.py", line 130, in <lambda>
        versions.sort(key = lambda x: [int(s) for s in x.split(".")])
      File "/tmp/pip-build-m0e47l0_/cx-oracle/setup.py", line 130, in <listcomp>
        versions.sort(key = lambda x: [int(s) for s in x.split(".")])
    ValueError: invalid literal for int() with base 10: '2_encryption_required'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-m0e47l0_/cx-oracle  

有什么想法吗?

Setuptools已经是最新的:

$ sudo pip3.4 install --upgrade setuptools
Requirement already up-to-date: setuptools in /usr/lib/python3.4/site-packages

安装了Oracle客户端,并且很乐意从PHP和其他人那里使用

$ echo $ORACLE_HOME
/usr/lib/oracle/11.2/client64
$ echo $LD_LIBRARY_PATH
/usr/lib/oracle/11.2/client64/lib

1 个答案:

答案 0 :(得分:0)

嗯,问题是由于/usr/lib/oracle/11.2/client64/11.2_encryption_required' Oracle客户端的文件夹,其中强制要求加密。 不幸的是,在Oracle客户端中,如果要对某些连接使用加密而不是某些其他连接,则需要使用单独的客户端。

似乎cx_oracle安装的FindInstantClientRPMLib还没有准备好看到任何非数字值,所以它在&#34; encryption_required&#34;一部分。

暂时我已重命名该文件夹,然后安装程序错误消失了。