C:\WINDOWS\system32>pip install scrapyCollecting scrapy The repository located at pypi.douban.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS it is recommended to use HTTPS instead, otherwise you ma…
问题:The repository located at mirrors.aliyun.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--tru…
使用pip install -r requirements.txt 命令批量安装模块时,报错: Double requirement given: numpy==1.12.1 from https://files.pythonhosted.org/packages/d8/f9/97aa0903ae39ed4ab6df1c9c22902f3c71f4330a54cf5a81b2bea585544d/numpy-1.12.1-cp27-cp27m-manylinux1_x86_64.whl#sha2…
pip安装第三方库时报错Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None))...,详细报错见下图: 报错原因: 国外镜像源连接问题导致 解决: 改为国内镜像源下载 常用国内源: 清华:https://pypi.tuna.tsinghua.edu.cn/simple/ 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.…
pip安装时报错  Unknown or unsupported command 'install 一.是否配置了路径 配置了看下面的方法. 二.有多个pip系统不知道调用哪个. 1.where pip找出 所有 pip的路径: 2.找到,并进入Python下的那个pip路劲: 3.再通过pip install  selenium 安装 即可: 参考:http://www.cnblogs.com/biyuting/p/6262531.html…
此情况只用于网络不畅的安装模块背景: 总出现红色的 Could not find a version that satisfies the requirement pymongo(from version:) 你可能会遇到下面这样的情况: 是因为网络的问题,要使用国内的镜像源来加速 解决办法: 你需要的是在你的命令行下面添加一句 例如:原本执行的命令是: pip install selenium==3.3 改为: pip install selenium==3.3 -i http://pypi.…
官方的pypi.python.org可能访问不了,可以先将pip配置为豆瓣的pypi镜像 $ mkdir ~/.pip $ vim ~/.pip/pip.conf [global] timeout = 6000 index-url = http://pypi.douban.com/simple [install] use-mirrors = true mirrors = http://pypi.douban.com trusted-host = pypi.douban.com 可将两处pypi.…
https://blog.csdn.net/liujingclan/article/details/50176597 https://blog.csdn.net/rytyy/article/details/78088682 在开发时,发现使用pip安装东西经常会超时,所以我就想到了使用国内镜像. 这里推荐使用豆瓣的源 建个文件 ~/.pip/pip.conf, 内容如下 [global] index-url = http://pypi.douban.com/simple/ [install] u…
原文地址:http://www.xuebuyuan.com/1157602.html 学习flask,安装virtualenv环境,这些带都ok,但是一安装包总是出错无法安装, 比如这样超时的问题: (env)user@orz:~/flask_study/venv-test/test$ easy_install Flask-SQLAlchemy Searching for Flask-SQLAlchemy Reading http://pypi.python.org/simple/Flask-S…
windows下pip安装python模块时报错总结  装载于:https://www.cnblogs.com/maxaimee/p/6515165.html 前言: 这几天把python版本升级后,发现pip安装模块好多都报错(暂不确定是不是因为升级导致的),我定睛一看,发现是权限的问题,那么怎么解决呢? 1 权限问题 C:\Users\ljf>pip install xlwt Exception: Traceback (most recent call last): File "c:\…