美文网首页
python使用国内源

python使用国内源

作者: wuqingfeng | 来源:发表于2022-11-22 09:29 被阅读0次

1、常用国内源

pypi 清华大学源:https://pypi.tuna.tsinghua.edu.cn/simple
pypi 豆瓣源 :http://pypi.douban.com/simple/
pypi 腾讯源:http://mirrors.cloud.tencent.com/pypi/simple
pypi 阿里源:https://mirrors.aliyun.com/pypi

2、临时使用国内源

pip install -e . -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install -i http://mirrors.gwm.cn/pypi/web/simple  --trusted-host mirrors.gwm.cn flask

3、全局使用国内源

pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
pip config set global.trusted-host mirrors.cloud.tencent.com

命令运行完成后,pip.conf中内容为:

[global]
index-url = http://mirrors.tencentyun.com/pypi/simple
trusted-host = mirrors.tencentyun.com

4、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.

相关文章

  • centos 下,使用yum配置Python3环境

    安装Python3:使用yum安装Python FAQ pip3使用国内源 note:新版ubuntu要求使用ht...

  • python使用国内源

    1、常用国内源 2、临时使用国内源 3、全局使用国内源 命令运行完成后,pip.conf中内容为: 4、pip c...

  • pip更换国内源

    Python pip更换国内源 国内源 常用的国内源 linux更换操作 创建这个文件并输入以下内容~/.pip/...

  • python包 国内源使用

    建议源url:https://pypi.douban.com/simple/ 1.直接使用源:pip instal...

  • python使用pip国内源

    python使用pip安装模块很方便,可是在国内官方源总是会间歇性的连接不上,其实python在国内也是有安装源的...

  • python pip使用国内源

    python使用pip安装包时,默认会从国外的源下载,下载非常慢并且可能导致下载失败。使用国内源可以提高下载速度和...

  • python pip 使用国内源

    国内源: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http...

  • pipenv的使用

    pipenv是pip和virtualenv的合体,用来管理python环境,因为是在国内使用,建议替换成国内源,参...

  • python pip源配置

    python 下载安装包时速度会很慢,推荐配置国内源 国内源: 豆瓣:http://pypi.douban.com...

  • 2019-03-01 python -m pip install

    看上去应该是下载pip包时请求超时,可以试试使用国内源更新pip。比如豆瓣源:python -m pip inst...

网友评论

      本文标题:python使用国内源

      本文链接:https://www.haomeiwen.com/subject/icwgxdtx.html