pip

安装

1
2
3
4
curl -s "https://bootstrap.pypa.io/get-pip.py" | python

# 或者下载完执行
python get-pip.py

安装配置

--no-setuptools 不安装setuptools

--no-wheel 不安装wheel

升级

Linux or macOS

1
pip install -U pip

Win

1
python -m pip install -U pip

其他

1
2
把当前环境中所有的包及版本写进requirements.txt
pip freeze > requirements.txt
1
2
把requirements.txt里面的包安装一遍
pip install -r requirements.txt

参考

【1】

本站采用「署名 4.0 国际」进行许可。