标签:一个 list span 指定 ror 没有 xxx 备忘录 基本命令
国外的源下载慢,换成国内
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
windows
win+r
%HOMEPATH%回车进入此目录
创建pip目录,进去创建pip.ini文件
输入下面,然后保存
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
inux:
修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:
[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple
有没有 pip 包 ,在命令行输入下面的代码就可以查看自己的 pip 版本(v: version)
pip -v
查看已经安装的 python 库:
pip list
安装 python 库
pip install xxx
在 pip 命令后指定源
pip install django==2.0 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip uninstall 包名
标签:一个 list span 指定 ror 没有 xxx 备忘录 基本命令
原文地址:https://www.cnblogs.com/gyxpy/p/13024393.html