Requirement already satisfied
报错信息
产生原因
由于Python环境的多样性。在计算机上安装了多个Python版本或虚拟环境时,pip可能不确定应该将包安装到哪个环境中,从而导致错误。
解决方法
- 指明
python
解释器的安装位置:
pip install --target=目标路径 工具包名字
- 安装过程中如果网络没有问题就可以安装成功,如果网络出现问题需要切换镜像源。
国内常用镜像源
-
清华大学 TUNA 镜像源
地址: https://pypi.tuna.tsinghua.edu.cn/simple -
阿里云镜像源
地址: https://mirrors.aliyun.com/pypi/simple/ -
豆瓣(Douban)镜像源
地址: https://pypi.douban.com/simple -
中国科技大学(USTC)镜像源
地址: https://pypi.mirrors.ustc.edu.cn/simple -
华中理工大学(HUST)镜像源
地址: https://pypi.hustunique.com/simple