pip 是一个命令行程序。pip 支持从PyPI、版本控制、本地项目和直接从分发文件安装。下面开始整理学习到的pip常用指令:
py -m pip使用您安装的最新 Python 解释器执行 pip。也可以直接执行使用pip。
C:>py -m pip install aarrr
说明:
py -m pip install Package # 安装最新版本
py -m pip install Package==2.0.2 # 安装指定版本
py -m pip install ‘Package>=2.0.1’ # 安装最低版本,不低于
C:>py -m pip install -r requirements.txt
requirements.txt里面包含了多个package的信息:
adodbapi == 2.6.2.0
attrs == 21.2.0
cffi == 1.15.0
C:>py -m pip uninstall aarrr
C:>py -m pip list
Package Version
adodbapi 2.6.2.0
async-generator 1.10
attrs 21.2.0
backcall 0.2.0
certifi 2021.10.8
cffi 1.15.0
click 8.0.3
colorama 0.4.4
cryptography 36.0.0
debugpy 1.5.0
decorator 5.1.0
C:>py -m pip show six
Name: six
Version: 1.16.0
Summary: Python 2 and 3 compatibility utilities
Home-page: https://github.com/benjaminp/six
Author: Benjamin Peterson
Author-email: benjamin@python.org
License: MIT
Location: c:\users\username\appdata\roaming\python\python38\site-packages
Requires:
Required-by: pyOpenSSL, python-dateutil
C:>py -m pip list --outdated
Package Version Latest Type
debugpy 1.5.0 1.5.1 wheel
ipykernel 6.4.1 6.5.1 wheel
ipython 7.28.0 7.30.0 wheel
jedi 0.18.0 0.18.1 wheel
Jinja2 3.0.2 3.0.3 wheel
jupyter-client 7.0.6 7.1.0 wheel
jupyter-core 4.8.1 4.9.1 wheel
prompt-toolkit 3.0.20 3.0.23 wheel
setuptools 47.1.0 59.4.0 wheel
traitlets 5.1.0 5.1.1 wheel
C:>py -m pip freeze --all
adodbapi == 2.6.2.0
async-generator == 1.10
attrs == 21.2.0
backcall == 0.2.0
certifi == 2021.10.8
cffi == 1.15.0
click == 8.0.3
更新pip版本
C:>python -m pip install --upgrade pip
以上是常用的一些pip命令,也是自己学python和搭建pypi环境过程中总结的。
更多请参考官网:https://pip.pypa.io/en/stable/user_guide/