win7 安装phthon cx_Oracle支持库--手记

版本必须对应:win7 64bit、Oracle client 64bit、python2.7 64bit、cx_Oracle才能安装成功、

1. 安装Oracle client 64bit、设置ORACLE_HOME(安装路径)、TNS_ADMIN(tns.ora路径)

2.pip install cx_Oracle,如有超时等情况可以使用国内镜像 如:pip  install --index https://pypi.mirrors.ustc.edu.cn/simple/ cx_Oracle

3.期间如有提示,还需要安装vc++ for python 2.7...

最后大功告成 

Successfully built cx-Oracle
Installing collected packages: cx-Oracle
Successfully installed cx-Oracle-5.2.1

你可能感兴趣的:(python)