- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
无法让 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
第二次编辑
实际上无论我安装什么,它都不是正确的版本.. 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需要配置一些东西。重要的部分是:
创建一个 virtualenv,将 python 解释器剥离为仅 32 位。在 virtualenv bin 目录中($WORKON_HOME/*name_of_virtualenv*/bin
):
% mv python python.fat
% lipo python.fat -remove x86_64 -output python
尽管 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/
无法让 cx_Oracle 与 Python 版本 2.7/mac os 10.7.2 (Lion) 一起工作 另一件事:我安装了 oracle 32 位,不确定是否正确。 Traceback (m
我是一名优秀的程序员,十分优秀!