【大模型应用开发-python基础】(二)pip常用命令

目录

一、常用命令

1、查看pip版本

2、查看已安装的第三方库

3、安装第三方库

4、安装指定版本的第三方库

5、升级已安装的第三方库

6、卸载已安装的第三方库

7、列出安装的包信息

8、查看需要被升级的包

9、查看已安装包的版本信息

10、安装指定文件中的包

11、更新pip

12、指定安装源

二、设置国内源

1、设置命令

2、国内源列表


一、常用命令

pip 是Python的包管理工具,用于安装、升级、卸载和列出已安装的第三方库。以下是一些常用的pip命令:

1、查看pip版本

`pip --version`

2、查看已安装的第三方库

`pip list` 或 `pip list -o`(显示可升级的包)。

3、安装第三方库

`pip install <包名>`,

例如 `pip install requests`。

4、安装指定版本的第三方库

`pip install <包名><版本号>`,例如 `pip install requests2.24.0`。

5、升级已安装的第三方库

`pip install --upgrade <包名>`,例如 `pip install --upgrade requests`。

6、卸载已安装的第三方库

`pip uninstall <包名>`,例如 `pip uninstall requests`。

7、列出安装的包信息

`pip show <包名>` 或 `pip show -f <包名>`,例如 `pip show requests`。

8、查看需要被升级的包

`pip list -o`,显示可升级的包。

9、查看已安装包的版本信息

`pip freeze`。

10、安装指定文件中的包

`pip install -r requirements.txt`,例如 `pip install -r requirements.txt`。

11、更新pip

`python -m pip install --upgrade pip`。

12、指定安装源

`pip install <包名> -i https://pypi.tuna.tsinghua.edu.cn/simple`,

例如 `pip install requests -i https://pypi.tuna.tsinghua.edu.cn/simple`。

二、设置国内源

1、设置命令

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

pip config命令介绍

pip config --help

Usage:
  pip config [<file-option>] list
  pip config [<file-option>] [--editor <editor-path>] edit

  pip config [<file-option>] get name
  pip config [<file-option>] set name value
  pip config [<file-option>] unset name


Description:
  Manage local and global configuration.

      Subcommands:

          list: List the active configuration (or from the file specified)
          edit: Edit the configuration file in an editor
          get: Get the value associated with name
          set: Set the name=value
          unset: Unset the value associated with name

      If none of --user, --global and --site are passed, a virtual
      environment configuration file is used if one is active and the file
      exists. Otherwise, all modifications happen on the to the user file by
      default.

Config Options:
  --editor <editor>           Editor to use to edit the file. Uses VISUAL or EDITOR environment variables if not
                              provided.
  --global                    Use the system-wide configuration file only
  --user                      Use the user configuration file only
  --site                      Use the current environment configuration file only

General Options:
  -h, --help                  Show help.
  --isolated                  Run pip in an isolated mode, ignoring environment variables and user configuration.
  -v, --verbose               Give more output. Option is additive, and can be used up to 3 times.
  -V, --version               Show version and exit.
  -q, --quiet                 Give less output. Option is additive, and can be used up to 3 times (corresponding to
                              WARNING, ERROR, and CRITICAL logging levels).
  --log <path>                Path to a verbose appending log.
  --proxy <proxy>             Specify a proxy in the form [user:passwd@]proxy.server:port.
  --retries <retries>         Maximum number of retries each connection should attempt (default 5 times).
  --timeout <sec>             Set the socket timeout (default 15 seconds).
  --exists-action <action>    Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup,
                              (a)bort.
  --trusted-host <hostname>   Mark this host or host:port pair as trusted, even though it does not have valid or any
                              HTTPS.
  --cert <path>               Path to alternate CA bundle.
  --client-cert <path>        Path to SSL client certificate, a single file containing the private key and the
                              certificate in PEM format.
  --cache-dir <dir>           Store the cache data in <dir>.
  --no-cache-dir              Disable the cache.
  --disable-pip-version-check
                              Don't periodically check PyPI to determine whether a new version of pip is available for
                              download. Implied with --no-index.
  --no-color                  Suppress colored output
  --no-python-version-warning
                              Silence deprecation warnings for upcoming unsupported Pythons.

2、国内源列表

清华源:

https://pypi.tuna.tsinghua.edu.cn/simple 

阿里源:

Simple Index

https://mirrors.aliyun.com/pypi/simple/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

forest_long

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值