pipenv安装库使用国内镜像

pipenv install django超级慢,卡住不动,最后不得不CTRL+C中止

这时有必要改成国内源了,打开Pipfile文件,发现内容是:

[[source]]
verify_ssl = true
name = "pypi"
url = "https://pypi.org/simple"

[packages]

[dev-packages]

[requires]
python_version = "3.4"

把url替换成阿里云源(这里国内源的选择问题可以参考我上篇文章:《pip使用国内镜像解决安装超时》):http://mirrors.aliyun.com/pypi/simple/

运行发现有出现不信任的问题了

索性将url改成url = "http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com"

[[source]]
verify_ssl = true
name = "pypi"
url = "http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com"

[packages]

[dev-packages]

[requires]
python_version = "3.4"

再次安装,显示:

这个问题是由于django需要python版本大于等于3.5,我的是3.4.4,版本不匹配导致,换requests库试试:pipenv install requests

可以看到,只花了3s,速度感人,有人说,清华源更好用,豆瓣源不好用,还没尝试

需要注意的是,这时候Profile文件中的[packages]下,多了requests = "*",标识了本项目依赖于requests

[[source]]
verify_ssl = true
name = "pypi"
url = "http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com"

[packages]
requests = "*"

[dev-packages]

[requires]
python_version = "3.4"

同时安装过程中有句话叫做 Updated Pipfile.lock,这时我们可以发现项目路径下又生成了一个 Pipfile.lock 文件,内容如下:

{
    "_meta": {
        "hash": {
            "sha256": "2520a3c6b3ead035956ec3f7f1a9ebeb0c274f4e1568f752dcfd4d6538193c52"
        },
        "pipfile-spec": 6,
        "requires": {
            "python_version": "3.4"
        },
        "sources": [
            {
                "name": "pypi",
                "url": "http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com",
                "verify_ssl": true
            }
        ]
    },
    "default": {
        "certifi": {
            "hashes": [
                "sha256:376690d6f16d32f9d1fe8932551d80b23e9d393a8578c5633a2ed39a64861638",
                "sha256:456048c7e371c089d0a77a5212fb37a2c2dce1e24146e3b7e0261736aaeaa22a"
            ],
            "version": "==2018.8.24"
        },
        "chardet": {
            "hashes": [
                "sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae",
                "sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691"
            ],
            "version": "==3.0.4"
        },
        "idna": {
            "hashes": [
                "sha256:156a6814fb5ac1fc6850fb002e0852d56c0c8d2531923a51032d1b70760e186e",
                "sha256:684a38a6f903c1d71d6d5fac066b58d7768af4de2b832e426ec79c30daa94a16"
            ],
            "version": "==2.7"
        },
        "requests": {
            "hashes": [
                "sha256:63b52e3c866428a224f97cab011de738c36aec0185aa91cfacd418b5d58911d1",
                "sha256:ec22d826a36ed72a7358ff3fe56cbd4ba69dd7a6718ffd450ff0e9df7a47ce6a"
            ],
            "index": "pypi",
            "version": "==2.19.1"
        },
        "urllib3": {
            "hashes": [
                "sha256:a68ac5e15e76e7e5dd2b8f94007233e01effe3e50e8daddf69acfd81cb686baf",
                "sha256:b5725a0bd4ba422ab0e66e89e030c806576753ea3ee08554382c14e685d117b5"
            ],
            "markers": "python_version != ‘3.2.*‘ and python_version < ‘4‘ and python_version != ‘3.1.*‘ and python_version != ‘3.3.*‘ and python_version != ‘3.0.*‘ and python_version >= ‘2.6‘",
            "version": "==1.23"
        }
    },
    "develop": {}
}

可以看到里面标识了 Python 环境基本信息,以及依赖包的版本及 hashes 值

参考文章

https://blog.csdn.net/jpch89/article/details/81952416

https://cuiqingcai.com/5846.html

原文地址:https://www.cnblogs.com/cnhkzyy/p/9589343.html

时间: 2024-10-29 17:38:44

pipenv安装库使用国内镜像的相关文章

Python pip安装第三方库的国内镜像

Windows系统下,一般情况下使用pip在DOS界面安装python第三方库时,经常会遇到超时的问题,导致第三方库无法顺利安装,此时就需要国内镜像源的帮助了. 使用方法如下: 例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider,这样就会从清华这边的镜像去安装pyspider库. 国内源: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors

React的UI库以及国内镜像

分享两个Ant Design官网的国内镜像. 有时候从官网打不开,从国内镜像就可以打开 PC: http://ant-design.gitee.io/in...移动端: https://antd-mobile.gitee.io/... 原文地址:https://www.cnblogs.com/tian-long/p/9299334.html

Docker CE安装及配置国内镜像加速教程

Docker CE安装教程 一.版本说明 2017年2月份,Docker公司发布了全新的Docker版本:V1.13.0.从2017年3月1号开始,Docker的版本命名发生如下变化: 项目 说明 版本格式 YY.MM stable版本 每个季度发行 edge版本 每个月发行 同时将Docker分成CE和EE 2个版本.CE版本即社区版(免费,支持周期三个月),EE即企业版,强调安全,付费使用. Docker 会每月发布一个 edge 版本(17.03, 17.04, 17.05...),每三个

pip安装超时,更换国内镜像源安装

pip安装超时问题 pip install --index 源地址 安装包 常用镜像源地址: http://pypi.douban.com/ 豆瓣 http://pypi.mirrors.ustc.edu.cn/ 中国科学技术大学 http://mirrors.aliyun.com/pypi/simple/ 阿里云 原文地址:https://www.cnblogs.com/everfight/p/pip_installation.html

让PIP源使用国内镜像,提升下载速度和安装成功率。

对于Python开发用户来讲,PIP安装软件包是家常便饭.但国外的源下载速度实在太慢,浪费时间.而且经常出现下载后安装出错问题.所以把PIP安装源替换成国内镜像,可以大幅提升下载速度,还可以提高安装成功率. 国内源: 新版ubuntu要求使用https源,要注意. 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.us

pip国内镜像,提升下载速度和安装成功率

对于Python开发用户来讲,PIP安装软件包是家常便饭.但国外的源下载速度实在太慢,浪费时间.而且经常出现下载后安装出错问题.所以把PIP安装源替换成国内镜像,可以大幅提升下载速度,还可以提高安装成功率. 国内源: 新版ubuntu要求使用https源,要注意. 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.us

转:让PIP源使用国内镜像,提升下载速度和安装成功率。

对于Python开发用户来讲,PIP安装软件包是家常便饭.但国外的源下载速度实在太慢,浪费时间.而且经常出现下载后安装出错问题.所以把PIP安装源替换成国内镜像,可以大幅提升下载速度,还可以提高安装成功率. 国内源: 新版ubuntu要求使用https源,要注意. 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.us

python第三方库国内镜像下载地址

Python 第三方库国内镜像下载地址 由于 Python 服务器在国外,因此使用 pip 安装第三方模块或者库的时候,下载速度特别慢,经常出现如下报错: $ socket.timeout: The read operation timed out 为提升下载速度,可以使用国内镜像下载,常用的国内镜像有: 豆瓣 https://pypi.douban.com/simple 阿里云 https://mirrors.aliyun.com/pypi/simple 清华大学 https://pypi.t

安装使用yarn,使用国内镜像加速npm和yarn

安装yarn https://yarnpkg.com/lang/zh-hans/docs/install/ 使用国内镜像加速npm和yarn 1. npm config set registry=https://registry.npm.taobao.org 2. yarn config set registry https://registry.npm.taobao.org 3. 下载cnpm:npm install -g cnpm --registry=https://registry.np