摘要: Python链接Oracle数据库常见的三个错误 import cx_Oracle print("cx_Oracle.version:", cx_Oracle.version) host = "数据库ip" port = "1521" service_name = "pdb01" # dsn = c 阅读全文
posted @ 2022-04-02 23:15 淡定的人参果 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 如果电脑中存在多个python版本的时候,需要使用pip安装三方库到指定的python版本,我们需要按照下面方法操作: 场景1:电脑上安装的有python2.x版本和python3.x版本 python3下pip安装命令如下: py -3 -m pip install xxxxxx python2下 阅读全文
posted @ 2022-04-02 22:38 淡定的人参果 阅读(1882) 评论(0) 推荐(0) 编辑