解决pip安装时的Readtime out问题】的更多相关文章

方法一 pip --default-timeout=100 install -U Pillow就可以了方法二 pip install pyinstaller -i https://pypi.doubanio.com/simple指定网站…
在装django的时候用pip安装就出现了问题,一大堆的红字,然后联想到很多次用pip安装都以失败告终,于是今天抽空看了看出现问题的原因. 情况如下图:…
  http://blog.csdn.net/wukai0909/article/details/62427437 国内源: 新版ubuntu要求使用https源,要注意. 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://pypi.hustuniqu…
1.参考 https://stackoverflow.com/questions/42610545/typeerror-unsupported-operand-types-for-retry-and-int-during-pip 需要设置代理 2.参考https://zhang0peter.com/2018/11/02/pip/ 使用 python -m pip install --upgrade pip更新pip 3.参考https://www.cnblogs.com/YenKoc/p/133…
使用pip install --upgrade pip升级pip中途失败,再次安装pip,完成后出现如下错误: 尝试重新安装pip也不行,同样会出现上述问题. 此时我们查看/usr/bin/pip文件内容: 使用vi /usr/bin/pip编辑文件将pip版本号改成已经装好的版本(我装的是18.0)即可: 然后就可以使用了: References 关于pip安装时提示pkg_resources.DistributionNotFound 错误问题…
1.Python安装时出现Could not fetch URL https://pypi.python.org/simple/pool/: There was a problem confirming ... 报错原因:可能是ssl证书没有认证,通过信任可以解决. pip -trusted-host pypi.python.org install + 要安装的包 2.Python升级带来的yum异常:file "/usr/bin/yum", line 30 #错误代码: [root@…
产生这个问题的原因呢和github一样,因为他们用的cdn被墙.经小伙伴反馈,解决办法如下. 通过指定国内镜像源来安装: pip --trusted-host 镜像源 install 模块名 -i 镜像源路径 例如:pip --trusted-host pypi.doubanio.com install paramiko -i http://pypi.doubanio.com/simple 注意后面要有/simple目录!!! 命令解释: --trusted-host 指定可信源(忽略https…
安装 pip : $ wget https://bootstrap.pypa.io/get-pip.py ... $ sudo python get-pip.py install 使用 pip 安装/升级 lxml(升至 3.3.5) 时出现以下报错: "error: command 'x86_64-linux-gnu-gcc' failed with exit status 1" 这是因为一些依赖包没有安装,可以使用以下命令更新依赖包: $sudo apt-get build-dep…
最近项目不忙了~~有开始专研的python大业,上来想用pip安装一个第三方的库,就一直报错: Could not fetch URL https://pypi.org/simple/xrld/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/xrld/ (Cause…
使用豆瓣的源(已经确认过了该源中有opendr包),pip安装opendr,结果卡在了下载完成的位置,什么提示也没有.(如下图) 既然安装包已经下载下来了又安装不上,则应该是安装代码中有什么问题,只不过错误提示没有打印出来. 于是到官网把pip安装包的代码下载下来 解压,看到安装包中是这样的. 安装包解压之后可以直接用吗?好像不可以: 于是执行setup.py文件,看可不可以手动安装,终于发现报错提示了: 原来是安装包执行过程中又自动去下载了一个下载不下来的包导致报错. 于是将OSMesa.Li…
背景:想把现在pc的项目做成关键字的形式,可以让功能测试人员也参与到自动化测试中,于是就找到robotframework这个框架,试用下怎么样,在安装时就遇到很多问题,安装的帖子有很多,很详细,如:http://blog.csdn.net/hdyrz/article/details/77860215 最老火的问题,如执行ride.py这个文件,打开ride,就给我报错 看了很多人说,可能是版本问题,但是确切的版本没有,然后我根据这个提示,到官网下载,然后重点来了,我电脑是64位,所以我第一想法是…
一般情况下PIP出现ReadTimeoutError都是因为被GFW给墙了,所以一般遇到这种问题,我们可以选择国内的镜像来解决问题. 在Windows下: C:\Users\Administrator\下新建pip文件夹,在创建pip.ini文件,拷贝下面代码进去,保存. [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple 其实就是把python的源换成了清华源,应该能解决问题. 国内源: 新版ubuntu要求使用https…
主要是被阻断了,所以可以延长等待时间完美解决问题.  在下载终端先输入如下命令: pip --default-timeout=100 install -U pip 然后输入下载命令:pip install pyspark…
我们在使用python开发的时候总会需要安装很多第三方模块 比如我用flask搭建web, 需要很多第三方模块,比如flask-sqlalchemy, flask-bootstrap等等.而这些模块用pip install 模块名的方法下载总会超时 现在介绍一种新的方式解决上述问题 首先我的操作系统是windows, 假如安装flask-sqlalchemy模块 pip install flask-sqlalchemy -i https://pypi.douban.io.com/simple 该…
经常在使用Python的时候需要安装各种模块,而pip是很强大的模块安装工具,但是由于国外官方pypi经常被墙,导致不可用,所以我们最好是将自己使用的pip源更换一下,这样就能解决被墙导致的装不上库的烦恼. 网上有很多可用的源,例如豆瓣:http://pypi.douban.com/simple/ 清华:https://pypi.tuna.tsinghua.edu.cn/simple 如果只是临时需求: 临时使用: 可以在使用pip的时候加参数-i https://pypi.tuna.tsing…
阅读目录 临时使用: 经常在使用Python的时候需要安装各种模块,而pip是很强大的模块安装工具,但是由于国外官方pypi经常被墙,导致不可用,所以我们最好是将自己使用的pip源更换一下,这样就能解决被墙导致的装不上库的烦恼. 网上有很多可用的源,例如豆瓣:http://pypi.douban.com/simple/ 清华:https://pypi.tuna.tsinghua.edu.cn/simple 如果只是临时需求: 临时使用: 可以在使用pip的时候加参数-i https://pypi…
在我们安装第三方库的时候会在结尾出现如下两行内容 You are using pip version 9.0.1, however version 18.0 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command. 解决 按照上面提示,执行下面代码(windows下要用管理员权限,linux下使用sudo) python -m pip install --u…
不知道什么原因,在kali rolling安装open-vm-tools时报以下错误: Failed to get unit file state for run-vmblockx2dfuse.mount: No such file or directory run-vmblock\x2dfuse.mount is a disabled or a static unit, not starting it. 我之后搜到这早被国外列为bug: https://bugs.launchpad.net/u…
安装好p4c的依赖之后,执行make -j2时出现以下问题: undefined references to `google::protobuf::internal::LogMessage::operator<<(std::string const&)' 出现问题的原因: p4c要求安装v3.2.0版本的 protobuf库 而新版本的protobuf库需要5.0版本以上的gcc/g++来编译 解决方案: 升级gcc/g++ sudo add-apt-repository ppa:ub…
http://blog.csdn.net/qq_33530388/article/details/68933201 解决方法: 打开 c:\program files\python36\lib\site-packages\pip\compat\__init__.py 约75行 return s.decode('utf_8') 改为return s.decode('cp936') 原因: 编码问题,虽然py3统一用utf-8了.但win下的终端显示用的还是gbk编码.…
国内源: 新版ubuntu要求使用https源,要注意. 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://pypi.hustunique.com/ 山东理工大学:http://pypi.sdutlinux.org/ 豆瓣:http://pypi.do…
有时,国外的网速确实不理想. 想安装python库,还是国内快点. 参考URL: http://www.mamicode.com/info-detail-2248964.html 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsin…
转载自:https://blog.csdn.net/qq_39165556/article/details/89333028 1.第一种解决办法 npm audit fix npm audit fix --force npm audit 2.第二种解决办法 删除已经安装的:node_modules 和 package-lock.json 修改 package.json 格式如下 npm audit fix --force npm instal 转载自:https://blog.csdn.net/…
pip install <package> -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com…
方法一:说明:目前是针对Windows7 64位操作系统安装! 1. 在C盘下新建文件夹,取名为“IE11”. 2. 将官网下载的IE11离线包放到此文件夹中. 3. win + r 打开运行窗口,输入cmd打开命令行,将目录切换到C盘下的IE11文件夹中. cd C:/IE114. 输入IE11按下tab键,命令行会自动补全名称,在后面加上“ /x:”(有一个空格). 离线包就会解压到d盘下的IE11文件夹中IE11_Windows6.1x64_zhcn_11.0.9600.16428_1.e…
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=4…
[From] http://jahu.iteye.com/blog/2353325 异常 : [Errno 2] No such file or directory: 'd:\\python\\python35.zip\\lib2to3\\Grammar.txt' 问题  : phton35.zip 没有 lib2to3 目录, 解决 从官网上下载一个3.6的版本,从里面的 python36.zip文件中,把lib2to3目录复制进了  现在的python35.zip里面,就好了.…
国内源: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://pypi.hustunique.com/ 山东理工大学:http://pypi.sdutlinux.org/ 豆瓣:http://pypi.douban.com/simple/ 临时使用 pi…
在CentOS以及其他的Linux系统中遇到安装包安装错误的原因,大多数都是因为缺少依赖包导致的,所以对于错误:zipimport.ZipImportError: can’t decompress data,是因为缺少zlib 的相关工具包导致的,知道了问题所在,那么我们只需要安装相关依赖包即可,1.打开终端,输入一下命令安装zlib相关依赖包: yum -y install zlib* 2.进入 python安装包,修改Module路径的setup文件:Modules/Setup.dist (…
1.pip install scipy -i https://pypi.douban.com/simple/ 2.pip install --index https://pypi.mirrors.ustc.edu.cn/simple/   +  (要下载的模块)pandas 3.pip install --index http://mirrors.sohu.com/python/…