本文介绍了导入cx_Oracle模块[Python]时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用Windows 7 64位和Oracle 10g.我已经安装了python-2.7.2.amd64和cx_Oracle-5.1-10g.win-amd64-py2.7.

I use Windows 7 64 bit and Oracle 10g. I have installed python-2.7.2.amd64 and cx_Oracle-5.1-10g.win-amd64-py2.7.

当我导入cx_Oracle模块时,出现此错误:追溯(最近一次通话): 在第1行的文件"C:\ Osebno \ test.py"中 导入cx_oracleImportError:没有名为cx_oracle

When I importing cx_Oracle module I get this error:Traceback (most recent call last): File "C:\Osebno\test.py", line 1, in import cx_oracleImportError: No module named cx_oracle

有人可以告诉我怎么了吗?

Can someone please tell me what is wrong?

推荐答案

您是否尝试过使用import cx_Oracle(大写字母O)而不是import cx_oracle?

Have you tried import cx_Oracle (upper-case O) instead of import cx_oracle?

这篇关于导入cx_Oracle模块[Python]时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 15:56