今天在安装npm包时遇到了这个错误,出现如下提示: npm WARN package.json xxx@0.0.0 No repository field. npm WARN package.json xxx@0.0.0 No README data 看字面意思大概是缺少README文件和repository字段,也就是说缺少项目的基本描述文件和仓库字段.此时,我们只需在项目的根目录下创建一个README文件,并且在package.json里面添加如下配置即可: { ... "repositor…
最近在研究node.js,在安装npm的时候发现了几个报错,瞬间蒙圈,查找文献基本解决(文献好少呀~  -.-)   一.报错:“can not open  path/path/package.json”   原因:在安装npm的时候,终端会调取一个叫package.json的文件,里边包含了 name,version,dependencies 等等属性信息,当终端找不到该文件的时候也就不能完成安装操作.   解决方法:在对应的path下边创建该文件,并且把需要的模块写在dependencies…
npm ERR! code ENOSELF npm ERR! Refusing to install package with name "webpack" under a package npm ERR! also called "webpack". Did you name your project the same npm ERR! as the dependency you're installing? npm ERR! npm ERR! For more…
报错如下: sudo npm i webpack -g /Users/xesfe/.npm-global/bin/webpack -> /Users/xesfe/.npm-global/lib/node_modules/webpack/bin/webpack.js # System-wide .profile for sh(1) > fsevents@1.2.11 install /Users/xesfe/.npm-global/lib/node_modules/webpack/node_mo…
最近需要安装taro 结果网络各种报错 解决方法 : 1重置网络 npm config rm proxynpm config rm https-proxy 2换淘宝镜像 npm config set registry https://registry.npm.taobao.org…
Install the latest version of NodeJS from their website (e.g. 6.X.X). Open the Node.js command prompt as administrator. Run: npm cache clean Run: npm uninstall -g ionic Run: npm uninstall -g cordova Run: npm install -g ionic Run: npm install -g cordo…
npm安装报错时 npm ERR! code EIOnpm ERR! syscall symlinknpm ERR! path ../@babel/parser/bin/babel-parser.jsnpm ERR! dest /home/vagrant/code/larabbs-weapp/node_modules/.bin/parsernpm ERR! errno -5npm ERR! EIO: i/o error, symlink '../@babel/parser/bin/babel-p…
安装atlas 报错: package Atlas-2.2.1-1.x86_64 is intended for a x86_64 architecture 百度了好久没找到相关信息,最后看见官网文档,它只支持64位操作系统 注意一下: 1Atlas only run in 64-bit systems.只支持64位 2Mysql version should be greater than 5.1, it is recommended to use Mysql 5.6. mysql版本大于5.…
npm install 报错 : error Unexpected end of JSON input while parsing near '...sShrinkwrap":false,"d' 解决办法: 运行如下命令 npm cache clean --force…
npm install WARN package.json not exists: D:\ProData\package.json 一.总结 一句话总结: 出现这样的原因一般是没有切换到指定的目录下,用cd命令切换到指定的目录下即可 二.npm install WARN package.json not exists: D:\ProData\package.json 转自或参考:npm install WARN package.json not exists: D:\ProData\packag…
前言 执行npm publish 报错:403 Forbidden - PUT https://registry.npmjs.org/kunmomotest - you must verify your email before publishing a new package: https://www.npmjs.com/email-edit  原因 邮箱未验证…
npm install报错问题解决 问题: E:\CodeSpace\GitlabTest\desktop>npm install > lifeccp-desktop@1.1.9 postinstall E:\CodeSpace\GitlabTest\desktop> install-app-deps Installing app dependencies for arch x64 to E:\CodeSpace\GitlabTest\desktop\app > sqlite3@3…
node-sass 安装报错解决办法 2017年04月15日 14:34:25 阅读数:20189 E:\kibana>npm install node-sass > node-sass@3.8.0 install E:\kibana\node_modules\node-sass > node scripts/install.js Cannot download "https://github.com/sass/node-sass/releases/download/v3.8.…
前言 执行命令npm publish报错:403 Forbidden - PUT https://registry.npmjs.org/kunmomotest2 - You cannot publish over the previously published versions: 0.0.1. 原因 不能在以前发布的版本上发布:0.0.1,所以我们需要升版本,更改包的package.json文件的版本号,然后重新发布…
mydumper 官网:https://launchpad.net/mydumper 下载之后,安装报错: [root@localhost local]# cd mydumper-0.6.2 [root]# [root]# ls binlog.c CMakeCache.txt common.h docs g_unix_signal.h myloader.c Processing server_detect.c binlog.h CMakeFiles config.h Finished mydum…
在新的机子上使用pip安装程序一直报错: Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', error(10054, ''))': /simple/virtualenv/ 可能因为单位的机子设置了代理服务器导致的,从StackOverflow搜到了解决方案: pip install…
codis3.2安装报错dashboard.go:369: [PANIC] call rpc create-proxy to dashboard 127.0.0.1:18080 failed的处理 执行以下命令时报错:# pwd/usr/local/go/work/src/github.com/CodisLabs/codis # ./bin/codis-admin --dashboard= --create-proxy -x [root@node1 codis]# ./bin/codis-adm…
命令行执行npm install报错如下: D:\frontend\viewsdev>npm install npm ERR! code EINTEGRITY npm ERR! sha512-8qtu6VYSXUExVPx6H8s8+OhQo0UQP7ogAoOa2bOPCvnhlpaGVYf3yh45WNa7PhhdWSOGQW3DdblqMX8UJ7Cu6g== integrity checksum failed when bytes) 后来发现是npm版本问题,需要更新至最新版本: D:\…
vuejs npm chromedriver 报错   # 全局安装 vue-cli$ npm install -g vue-cli# 创建一个基于 "webpack" 模板的新项目$ vue init webpack my-project# 安装依赖,走你$ cd my-project$ npm install$ npm run dev 用vue建项目后,npm install 发现老卡在chromedriver 报错上, 后来网上查了下,发现了解决办法 npm install ch…
npm -v 报错:Error: EPERM: operation not permitted, mkdir 'C:\soft\nodejs' 起因:原本安装node在C盘soft文件夹下,按nodejs安装和配置安装后,因为公司电脑的各种权限问题,无法mkdir缓存文件(soft文件是管理员建的,当我在项目里面那npm install时也是报错Error: EPERM: operation not permitted, mkdir 'C:\soft\nodejs'),所以卸载了,重新装在另一个…
在运行vue项目时,执行npm install 报错,导致后续的执行报各种错误,根据报错,尝试了网上的各种办法,最后发现时网络问题下载失败导致,解决办法: 安装cnpm==>npm install cnpm -g –registry=https://registry.npm.taobao.org cnpm与npm区别: cnpm跟npm用法完全一致,只是在执行命令时将npm改为cnpm. 使用cnpm install 解决问题(在使用cnpm前将原先报错的模块删除)…
之前安装 Microsoft Sql Server 2012 R2 的时候总是报这样的错误: SQL Server Setup has encountered the following error: The SQL Server license agreement cannot be located for the selected edition, enterprise. This could be a result of corrupted media or the edition bei…
yum 安装报错 "Another app is currently holding the yum lock; waiting for it to exit... The other application is: PackageKit Memory : 153 M RSS (266 MB VSZ) Started: Thu Jul 12 00:03:05 2012 - 06:17 ago State : Sleeping, pid: 4018Another app is currently…
有没有童鞋,在第一次安装office 2010的时候,中途不管是何原因导致中断或者未安装成功的 然后从第二次开始就一直安装报错??? 哈哈,我最近就遇到了 其他很简单,网上有很多方法,也有很多步骤,包括用微软官方提供的office卸载工具的也有 其实很简单,就三步 1 搜索C盘,关键字:office,搜索出来的,能删除的全部删除!有文件夹删除不掉的,用360强制粉碎 2 搜索安装盘路径,比如d:/office,整个文件夹删除 3 使用regedit登录注册表,搜索字段:office,搜索范围:所…
yum安装报错有冲突file /usr/lib64/php/modules/fileinfo.so conflicts between attempted installs of php-pecl-fileinfo-1.0.4-2.el6.rf.x86 64 and php-common-5.3.3-46.el6 6.x86 64   遇到这个情况的时候  是库冲突了 需要修改文件        vim /etc/yum.repos.d/rpmforge.repo 将里面的enable=1  …
最近一直没有写过js,换了新电脑以后,eclipse下的aptana插件也没有装过,这几天要写js想重新把aptana装上,但是不知怎的,link方式.在线安装方式还有离线包下载下来利用eclipse中的软件安装的功能都不行,到最后查了查,有朋友说64位的eclipse装不了aptana的插件,无奈呀...前天想把eclipse换成32位再试,结果换成32位之后aptana是装成功了,tomcat.jdk都要换32位,个人比较懒,32位的软件装在64位下好多都要修改配置文件,干脆不装aptana…
pip安装报错:is not a supported wheel on this platform 可能的原因1:安装的不是对应python版本的库,下载的库名中cp35代表python3.5,其它同理. 可能的原因2:这个是我遇到的情况(下载的是对应版本的库,然后仍然提示不支持当前平台) 我下载到的Twisted库文件名: Twisted-17.5.0-cp35-cp35m-win_amd64.whl 使用pip安装(在命令行中): pip install Twisted-17.5.0-cp3…
python3 pip 安装Scrapy在win10 安装报错error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools   问题描述 当前环境win10,python_3.6.1,64位. 在windows下,在dos中运行pip instal…
Maven的安装.配置及使用入门+maven安装报错:JAVA_HOME[申明:来源于网络] Maven的安装.配置及使用入门:http://www.cnblogs.com/dcba1112/archive/2011/05/01/2033805.html maven安装报错:JAVA_HOME:http://jingyan.baidu.com/article/066074d645db24c3c21cb088.html…
1.淘宝镜像的设置 npm config set registry https://registry.npm.taobao.org npm config set disturl https://npm.taobao.org/dist 2.package.json包的全局 更新 npm-check检查更新 npm install -g npm-check npm-check npm-upgrade更新 npm install -g npm-upgrade 运行 npm-upgrade Checki…