Python如何使用国内源下载模块

这里推荐 4 个国内镜像源:

  • 阿里云:http://mirrors.aliyun.com/pypi/simple
  • 中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple
  • 豆瓣:http://pypi.douban.com/simple
  • 清华大学:https://pypi.tuna.tsinghua.edu.cn/simple

那么,如何指定国内镜像地址来下载包呢?

只需要在 pip 的时候加参数 -i http://pypi.douban.com/simple,-i 后面的网址可以是上述4个国内镜像源的任意一个,这里以清华大学镜像源举例:

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

这样就会从清华大学镜像源去下载安装 jieba 库。

你可能感兴趣的:(python,linux,开发语言)