【已解决】PYTHON:An error occurred while installing package 问题解决办法

【已解决】python安装模块失败–cx_oracle

问题原因

今天在使用python读取数据库数据时,进行连接数据库操作,发现cx_Oracle模块没有安装,使用python自动安装oracle时报错:“ERROR conda.core.link:_execute_actions(337): An error occurred while installing package”错误,尝试了以下解决办法,立马解决了!

cx_oracle安装失败猜测为安装镜像地址的问题,国外镜像大多数比较麻烦,安装失败几率较大。

解决办法

由于使用python自动安装个别模块,pip或者conda等问题频出,不方便安装,可在python的终端输入命令手动安装,指定镜像地址。

pip install -i http://mirrors.aliyun.com/pypi/simple/ cx_oracle --trusted-host mirrors.aliyun.com
//这里采用国内阿里云镜像地址

安装成功
正常导入即可。

你可能感兴趣的:(数据库,python,oracle,数据库)