python问题处理

  1. 更新pip失败
  2. 安装超时

一、python 更新pip失败

1
2
3
4
5
6
7
8
9
# 查看pip版本
# 1
pip -V
# 2
pip show pip
# 更新pip
python -m pip install --upgrade pip
# 使用上述命名更新pip失败,可以使用下面这个命令
python -m pip install -U --force-reinstall pip

二、python安装时超时

1
2
3
4
5
6
7
8
# 报错信息:
socket timeout:The read operation timed out
# 使用国内源解决这个问题
pip install 包名 -i https://pypi.douban.com/simple
# 其他国内源地址
-i https://pypi.douban.com/simple
-i https://pypi.doubanio.com/simple
-i https://pypi.tuna.tsinghua.edu.cn/simple
------------- End -------------