我最近搬到了Ubuntu,并且我正在尝试安装cx_Oracle以便能够与Oracle Database 11g XE一起使用。但是每当我尝试导入时,都会出现以下错误
ModuleNotFoundError: No module named 'cx_Oracle'
我已经安装了它,但无法解决该问题。
import cx_Oracle
con = cx_Oracle.connect('system/akhil@localhost/xe')
print(con.version)
con.close()