栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

PIP 安装真好用

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

PIP 安装真好用

没有梯子的请使用国内镜像,速度冲冲冲:

默认情况下 pip 使用的是国外的镜像,在下载的时候速度非常慢,本文我们介绍使用国内清华大学的源,地址为:

https://pypi.tuna.tsinghua.edu.cn/simple
临时使用:

我们可以直接在 pip 命令中使用 -i 参数来指定镜像地址,例如:

pip3 install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple

以上命令使用清华镜像源安装 numpy 包。

这种只对当前安装对命令有用,如果需要全局修改,则需要修改配置文件。

Linux/Mac os

配置文件位置在 ~/.pip/pip.conf(如果不存在创建该目录和文件,记得前面的点啊):

mkdir ~/.pip

打开配置文件 ~/.pip/pip.conf,修改如下:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn

查看 镜像地址:

$ pip3 config list   
global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple'
install.trusted-host='https://pypi.tuna.tsinghua.edu.cn'

可以看到已经成功修改了镜像。

Windows

你需要在当前对用户目录下(C:Usersxxpip,xx 表示当前使用的用户)创建一个 pip.ini文件并输入以下内容:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
其他国内镜像源

中国科学技术大学 : https://pypi.mirrors.ustc.edu.cn/simple豆瓣:http://pypi.douban.com/simple/

另附pip help:

Usage:
  pip [options]

Commands:
  install                        Install packages.
  download                  Download packages.
  uninstall                    Uninstall packages.
  freeze                      Output installed packages in requirements format.
  list                            List installed packages.
  show                        Show information about installed packages.
  check                       Verify installed packages have compatible dependencies.
  config                       Manage local and global configuration.
  search                      Search PyPI for packages.
  cache                       Inspect and manage pip's wheel cache.
  index                        Inspect information available from package indexes.
  wheel                       Build wheels from your requirements.
  hash                        Compute hashes of package archives.
  completion               A helper command used for command completion.
  debug                      Show information useful for debugging.
  help                         Show help for commands.

General Options:
  -h, --help                   Show help.
  --debug                     Let unhandled exceptions propagate outside the main subroutine, instead of logging them to stderr.
  --isolated                  Run pip in an isolated mode, ignoring environment variables and user configuration.
  --require-virtualenv     Allow pip to only run in a virtual environment; exit with an error otherwise.
  -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 to a verbose appending log.
  --no-input                     Disable prompting for input.
  --proxy           Specify a proxy in the form [user:passwd@]proxy.server:port.
  --retries         Maximum number of retries each connection should attempt (default 5 times).
  --timeout             Set the socket timeout (default 15 seconds).
  --exists-action    Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
  --trusted-host   Mark this host or host:port pair as trusted, even though it does not have valid or any HTTPS.
  --cert                          Path to PEM-encoded CA certificate bundle. If provided, overrides the default. See 'SSL Certificate Verification' in pip documentation for more information.
  --client-cert                Path to SSL client certificate, a single file containing the private key and the certificate in PEM format.
  --cache-dir

                   Store the cache data in .
  --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.
  --use-feature          Enable new functionality, that may be backward incompatible.
  --use-deprecated    Enable deprecated functionality, that will be removed in the future.

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/757736.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号