原生pip镜像下载速度较慢,配置使用国内镜像。这里选择清华镜像,文档地址:https://mirrors.tuna.tsinghua.edu.cn/help/pypi/
pip 镜像配置
临时使用:
> pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package
注意,simple
不能少, 是 https
而不是 http
设为默认:
> pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip常用命令
pip命令示例 | 说明 |
---|---|
pip install SomePackage | 安装 SomePackage 模块 |
pip list | 已安装模块列表 |
pip install --upgrade SomePackage | 升级 SomePackage 模块 |
pip uninstall SomePackage | 卸载 SomePackage 模块 |
pip install SomePackage.whl | 使用whl文件直接安装 SomePackage |
pip freeze >requirements.txt | 导出依赖包 |
pip install -r requirements.txt | 安装依赖包 |
虚拟环境
Ubuntu Linux:
① 安装venv包:
$ sudo apt-get install python3-venv
② 切换到工程目录,执行这个命令,这里testvenv即为虚拟环境名称:
$ python3 -m venv testvenv
③ 激活虚拟环境:
$ source testvenv/bin/activate
④ 退出虚拟环境:
$ deactivate
Windows CMD:
> python -m venv testvenv
> testvenvScriptsactivate
> deactivate