天天看点

Python相关问题合集一、python pip 无法安装,无法重新安装,无法卸载,什么都干不了。二、python使用cv2模块三、加速pip下载参考文档:

一、python pip 无法安装,无法重新安装,无法卸载,什么都干不了。

Python相关问题合集一、python pip 无法安装,无法重新安装,无法卸载,什么都干不了。二、python使用cv2模块三、加速pip下载参考文档:

Cannot import module appdirs

等等。

解决方法:sudo rm -rf /usr/lib/python3.7/site-packages

sudo python3.7 -m ensurepip

sudo python -m pip install --upgrade pip

Python相关问题合集一、python pip 无法安装,无法重新安装,无法卸载,什么都干不了。二、python使用cv2模块三、加速pip下载参考文档:

然后重新安装pip插件。

二、python使用cv2模块

pip install opencv-python --user

三、加速pip下载

Windows下,在用户目录下新建pip目录,并新建一个pip.ini文件

Linux下,在用户目录下新建.pip目录,新建pip.conf文件

然后添加:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
           

这是清华的源。

参考文档:

[1]https://stackoverflow.com/questions/55284600/pip-returns-the-same-error-all-the-time-hide-cursor

[2]https://blog.csdn.net/qq_32846595/article/details/79264071