关于python3包的安装问题?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于python3包的安装问题?相关的知识,希望对你有一定的参考价值。
用pycharm2020安装的第三方库,怎么才能在本地的python(python官网上下载安装的)也能用???
如图,勾选这个选项,就是安装在本地,而不是一个项目
追问问下本地安装好后,卸载了pycharm,这些库,本地还在吗??
追答这个还真没注意过,理论上应该在的
参考技术A 不是通用的吗~命令行里输入pip list 看下装的第三方库包的安装问题——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
以上是关于关于python3包的安装问题?的主要内容,如果未能解决你的问题,请参考以下文章