包的安装问题——python

Posted 熊猫blue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了包的安装问题——python相关的知识,希望对你有一定的参考价值。

1. 当uninstall或者upgrade包时遇到类似下面的问题时:

It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. 

 解决:在安装路径下找到“XXX.egg-info”文件,然后删除它。稍后再继续后面uninstall或者upgrade包的操作。

 

 2. 当install时遇到类似的问题:

ERROR: Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问。
Consider using the `--user` option or check the permissions.

 解决:在pip语句的最后面添加\'--user\'即可,例如:

pip install XXX --user

3. 更新单个包

pip install --upgrade XXX

4. 卸载某包

pip uninstall XXX

 5.  Annoconda prompt时pip报错sys.exit(pip.main()) AttributeError: module \'pip\' has no attribute \'main\':

解决:

easy_install --upgrade pip

6. 加载pickle数据时发生错误:ModuleNotFoundError: No module named \'pandas.core.internals.managers\'; \'pandas.core.internals\' is not a package

解决:升级pandas

pip install -U pandas --user

 

以上是关于包的安装问题——python的主要内容,如果未能解决你的问题,请参考以下文章

python基础:python扩展包的安装方式

包的安装问题——python

关于python3包的安装问题?

从 Windows 应用商店安装手动安装 Python PIP 包的问题

用于安装 aur 包的 python 脚本

Python pip - 安装包的文档?