gpt4 book ai didi

python - 无法让 cx_Oracle 与 Python 版本 2.7/mac os 10.7.2 (Lion) 一起工作 - missing_OCIAttrGet

转载 作者:太空狗 更新时间:2023-10-29 22:14:03 24 4
gpt4 key购买 nike

无法让 cx_Oracle 与 Python 版本 2.7/mac os 10.7.2 (Lion) 一起工作

另一件事:我安装了 oracle 32 位,不确定是否正确。

 Traceback (most recent call last):
File "reader.py", line 9, in <module>
import cx_Oracle
File "build/bdist.macosx-10.7-intel/egg/cx_Oracle.py", line 7, in <module>
File "build/bdist.macosx-10.7-intel/egg/cx_Oracle.py", line 6, in __bootstrap__
ImportError: dlopen(/Users/me/.python-eggs/cx_Oracle-5.1.1-py2.7-macosx-10.7-intel.egg-tmp/cx_Oracle.so, 2): Symbol not found: _OCIAttrGet
Referenced from: /Users/me/.python-eggs/cx_Oracle-5.1.1-py2.7-macosx-10.7-intel.egg-tmp/cx_Oracle.so
Expected in: flat namespace
in /Users/me/.python-eggs/cx_Oracle-5.1.1-py2.7-macosx-10.7-intel.egg-tmp/cx_Oracle.so

他们的关键问题似乎是无法找到 _OCIAttGet,我认为这意味着它找不到 lib 文件或其他东西。

在网上找到,有人在说DYLD_LIBRARY_PATH,我的设置好了,不过他在cxoracle.cfg文件里提到了,我找不到,是这个我的问题?

编辑

尝试使用 32 位模式 python 运行它后,我看到了一个不同的错误。

 Traceback (most recent call last):
File "reader.py", line 9, in <module>
import cx_Oracle
File "build/bdist.macosx-10.7-intel/egg/cx_Oracle.py", line 7, in <module>
File "build/bdist.macosx-10.7-intel/egg/cx_Oracle.py", line 3, in __bootstrap__
ImportError: No module named pkg_resources
  • 我无法让 oracle 64 位版本在我的计算机上运行,​​当我运行 sqlplus 时不断出现段错误,所以这就是我使用 32 位版本的原因。

第二次编辑

实际上无论我安装什么,它都不是正确的版本.. 32 位版本

 ld: warning: ignoring file /opt/oracle/instantclient10_2/libclntsh.dylib, file was built for unsupported file format which is not the architecture being linked (i386)

64 位版本:

 ld: warning: ignoring file /opt/oracle/instantclient10_2/libclntsh.dylib, file was built for unsupported file format which is not the architecture being linked (x86_64)

我打算尝试 11g,但只有 64 位版本。

最佳答案

收件人compile cx_Oracle so it'll work on OS X需要配置一些东西。重要的部分是:

  1. 创建一个 virtualenv,将 python 解释器剥离为仅 32 位。在 virtualenv bin 目录中($WORKON_HOME/*name_of_virtualenv*/bin):

    % mv python python.fat
    % lipo python.fat -remove x86_64 -output python
  2. 尽管 Python 现在很瘦,但它的配置却不是,所以我们需要使用 distutils 将获取的模糊环境变量来强制执行:

    ARCHFLAGS="-arch i386" pip install cx_Oracle

关于python - 无法让 cx_Oracle 与 Python 版本 2.7/mac os 10.7.2 (Lion) 一起工作 - missing_OCIAttrGet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8169946/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com