Raspberry pi No module named 'cx_Oracle'

前端 未结 2 1696
梦如初夏
梦如初夏 2020-12-22 07:20

I want to use the raspberry pi to send values to the Oracle11g database, but when I run import cx_Oracle syntax for that process, I get the following error:

2条回答
  •  礼貌的吻别
    2020-12-22 07:51

    It means, that you have not installed module cx_Oracle.

    First you must install Oracle driver with PIP:

    python -m pip install cx_Oracle --upgrade
    

    Hope it helped you.

提交回复
热议问题