国内源

  1. pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple

sudo apt-get install python3-pip
~/.pip/pip.conf

  1. [global]
  2. index-url = https://pypi.douban.com/simple/
  3. [install]
  4. trusted-host = pypi.douban.com

阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

命令

  1. pip install parallel-ssh==1.0.0
  2. pip install SomePackage-1.0-py2.py3-none-any.whl
  3. pip install -e .
  4. pip install --upgrade SomePackage
  5. pip uninstall SomePackage
  6. pip list
  7. pip list --outdated
  8. pip show --files SomePackage
  9. pip freeze > requirements.txt
  10. pip install -r requirements.txt

错误收集

MemoryError

内存不够可以设置参数
https://blog.csdn.net/Alpha_B612/article/details/82228808

参考

https://pip.pypa.io/en/stable/