pip升级与使用
安装库的时候报了个错,提示要更新pip,之后pip就不能用了:ModuleNotFoundError: No module named 'pip'
第一条命令修复pip, 第二条升级pip
python -m ensurepip python -m pip install --upgrade pip
错误:
无法卸载“ruamel yaml”。这是一个distutils安装的项目,因此我们无法准确地确定哪些文件属于它,这将导致只部分卸载。
ERROR: Cannot uninstall 'ruamel-yaml'. 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.
pip install xxx --ignore-installed 库名 或 pip install xxx --ignore-installed ${PACKAGE_NAME}
WARNING: You are using pip version 19.2.3, however version 21.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.运行 python -m pip install --upgrade pip 后还是报错,运行 easy_install -U pip
其他
查看安装包版本:
pip show xxx
在线下载命令
pip install -i https://pypi.douban.com/simple scrapy
常用的python 镜像
豆瓣
该网站比较稳定,速度也比较快
https://pypi.douban.com/simple加利福尼亚大学
https://www.lfd.uci.edu/~gohlke/pythonlibs/清华大学
https://pypi.tuna.tsinghua.edu.cn/simple中国科技大学
https://mirrors.ustc.edu.cn/pypi/web/simple阿里
https://mirrors.aliyun.com/pypi/simple/
Python pip的一些问题
最新推荐文章于 2024-05-04 19:07:32 发布