镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在): 1.通过config命令 npm config set registry https://registry.npm.taobao.org npm info underscore (如果上面配置正确这个命令会有字符串response) 2.命令行指定 npm --registry https://registry.npm.taobao.org info underscore 3.编辑 ~/.npmrc…
我以前使用web.py没事,今天运行时报错, mimetypes.init() # try to read system mime.types File "D:\ProgramFiles\python2.7\lib\mimetypes.py", line 358, in init db.read_windows_registry() File "D:\ProgramFiles\python2.7\lib\mimetypes.py", line 258, in rea…
多试几次,有时候网络不稳定下载一半会停掉 更改Pip源 pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple 1.首先确认镜像源为稳定镜像源(现在最稳定的是清华镜像源) 查看本机镜像源 conda config --show -------------------- 还原未默认源: conda config --remove-key channels -------------------------------------…
$ docker pull php:7.1-fpm-alpine Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) 见到这段烦人的超时提示,就知道是网络问题了,解决办法是添加国内镜像 https://dock…
在国内做开发,由于各种各样的原因,导致网络总是那么不好,对于我们前端开发者,在使用npm的时候很可能因为网络问题导致包安装失败,然后我们又匆匆启动项目,导致缺少依赖等各种问题,下面将会介绍一个淘宝的npm源和如果已经网络出错包依赖安装失败的解决方法. 1.淘宝的npm源 特点 a.10分钟同步一次! b.当淘宝源没有文件时自动切换到npm的源 使用方法 a.安装cnpm工具 $ npm install -g cnpm --registry=https://registry.npm.taobao.…
今天同事给了一个webpack的项目,我拿过来,npm  install 突然出现报错了,并且报了一个奇怪的错误, 如下所示, Unexpected end of JSON input while parsing near ‘--- “https:// github.com/w”’, 安装依赖从来没有失败过,我就和同事说了一下,是不是项目的依赖有问题,他说没有问题,他的项目都已经跑起来,问了一下其它同事,他们安装也没有这样的问题,这就有点无奈了,只有我一个人有问题.为了排查是哪个依赖有问题,我把…
https://segmentfault.com/a/1190000008310875 npm install chromedriver --chromedriver_cdnurl=http://cdn.npm.taobao.org/dist/chromedriver…
You got to add python to your PATH variable. One thing you can do is Edit your Path variable now and add ;%PYTHON%; Your variable PYTHON should point to the root directory of your python installation. PATH里增加 ;%PYTHON%; 原文:https://stackoverflow.com/q…
npm 安装 chromedriver 失败的解决办法npm 安装 chromedriver 时,偶尔会出错,错误提示类似于:npm ERR! chromedriver@2.35.0 install: `node install.js` 经分析发现,某些版本下,chromedriver 的 zip 文件 url 的响应是 302 跳转,而在 install.js 里使用的是 Node.js 内置的 http 对象的 get 方法无法处理 302 跳转的情况:而在另外一些情况下,则是因为 goog…
pip安装包失败的常见解决方法 方法一 当安装包失效的时候可以去网站下载whl文件.下载的时候应该先查看电脑上 python 的版本. 地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/ 方法二 去 pypi 官网下载对应的压缩包.解压缩后使用setup.py进行安装. 网址:https://pypi.org/ 如果是虚拟环境就先进行激活后进行使用 解压缩后进行到包含setup.py的文件夹下,打开终端: 执行命令 python setup.py bui…