python 安装cx_oracle
时间: 2023-10-28 15:57:05 浏览: 233
要在 Python 中使用 cx_Oracle 模块,你需要先安装 Oracle Instant Client 和 SDK。这里提供以下步骤:
1. 前往 Oracle 官网下载 Instant Client 和 SDK,选择对应的操作系统版本和位数。下载链接:https://www.oracle.com/database/technologies/instant-client/downloads.html
2. 解压下载的 Instant Client 压缩包,将其中的文件拷贝到某个目录下,例如 /usr/local/oracle。
3. 配置环境变量:
```
export ORACLE_HOME=/usr/local/oracle/instantclient_19_8
export LD_LIBRARY_PATH=$ORACLE_HOME
```
4. 确认是否安装了预编译的 Python 扩展库:
```
pip install cx_Oracle
```
如果系统中已经安装了 Oracle 数据库,可以直接使用其中的 Instant Client 和 SDK,无需单独下载安装。
安装完成后,你就可以在 Python 中使用 cx_Oracle 模块了,例如:
```python
import cx_Oracle
dsn_tns = cx_Oracle.makedsn('server', 'port', service_name='service_name')
conn = cx_Oracle.connect(user='username', password='password', dsn=dsn_tns)
c = conn.cursor()
c.execute('SELECT * FROM mytable')
row = c.fetchone()
print(row)
conn.close()
```
阅读全文