pip备忘录
Posted gyxpy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip备忘录相关的知识,希望对你有一定的参考价值。
pip备忘录
一:换源
国外的源下载慢,换成国内
阿里云 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 包名
以上是关于pip备忘录的主要内容,如果未能解决你的问题,请参考以下文章