npm install Error:EPROTO: protocol error, symlink '../mime/cli.js' -> '/vagrant/src/nodejs/node_modules/express/node_modules/send/node_modules/.bin/mime'

我在ubuntu上使用npm安装依赖是出现下面错误:

npm ERR! Linux 3.13.0-101-generic
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install" "express"
npm ERR! node v4.6.2
npm ERR! npm v2.15.11
npm ERR! path ../mime/cli.js
npm ERR! code EPROTO
npm ERR! errno -71
npm ERR! syscall symlink

npm ERR! EPROTO: protocol error, symlink ‘../mime/cli.js‘ -> ‘/vagrant/src/nodejs/node_modules/express/node_modules/send/node_modules/.bin/mime‘
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR! <https://github.com/npm/npm/issues>

npm ERR! Please include the following file with any support request:
npm ERR! /vagrant/src/nodejs/npm-debug.log

我的解决办法是安装时加一个--no-bin-links标记:

npm install --no-bin-links

npm install Error:EPROTO: protocol error, symlink '../mime/cli.js' -> '/vagrant/src/nodejs/node_modules/express/node_modules/send/node_modules/.bin/mime'

时间: 2024-11-19 22:56:15

npm install Error:EPROTO: protocol error, symlink '../mime/cli.js' -> '/vagrant/src/nodejs/node_modules/express/node_modules/send/node_modules/.bin/mime'的相关文章

禁止root远程登录 sshd问题:A protocol error occurred. Change of username or service not allowed

在研究Linux安全的时候遇到一个问题,原本打算修改linux直接远程root登陆,修改为sshd的配置文件后 Nano /etc/ssh/sshd_config 把#PermitRootLogin yes 修改为PermitRootLogin no 修改完成后,保存退出 重启sshd service sshd restart 新建一个普通用户 Useradd unixbar Passwd unixbar 在securecrt远程工具中,使用普通用户登陆的时候,出现了 The server ha

sshd问题:A protocol error occurred. Change of username or service not allowed

在securecrt远程工具中,使用roto登陆的时候,出现了 The server has disconnected with an  error.  Server message reads: A protocol error occurred. Change of  username or service not allowed: (shang1,ssh-connection) ->  (shang,ssh-connection) 这是因为sshd中禁用了root账户远程登录. 修改ssh

输入npm install 报错[email&#160;protected] postinstall:`node scripts/build.js` Failed at the [email&#160;protected](scratch-www npm i失败)

这个是因为sass安装时获取源的问题,先修改sass安装的源,再运行npm install就成功了 npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass 原文地址:https://www.cnblogs.com/mryaohu/p/12329647.html

lr使用linux Generator测试https莫名报 SSL protocol error when attempting to connect with host

接收一个性能测试任务,各种原因需要使用linux agent产生压力.诡异的事发生了,同样脚本windows回放成功,使用linux agent报如下错误,脚本回放失败. Action.c(33): Error -27778: SSL protocol error when attempting to connect with host "xxx.xxx.xxx" 各种查找原因: 方法1:lr设置如下,无效因为只在windows生效linux根本不起作用 runtime setting

Firefox 中出现的 “Network Protocol Error”怎么办

Mozilla Firefox 多年来一直是我的默认 Web 浏览器,我每天用它来进行日常网络活动,例如访问邮件,浏览喜欢的网站等.今天,我在使用 Firefox 时遇到了一个奇怪的错误.我试图在 Reddit 平台上分享我们的一个指南时,在 Firefox 上出现了以下错误消息: Network Protocol Error Firefox has experienced a network protocol violation that cannot be repaired. The pag

npm install --save 与 npm install --save-dev 的区别

[npm install --save 与 npm install --save-dev 的区别] 以npm安装msbuild为例: npm install msbuild: 会把msbuild包安装到node_modules目录中 不会修改package.json 之后运行npm install命令时,不会自动安装msbuild npm install --save: 会把msbuild包安装到node_modules目录中 会在package.json的dependencies属性下添加ms

NPM install -save 和 -save-dev 傻傻分不清

本文原文地址:https://www.limitcode.com/detail/59a15b1a69e95702e0780249.html 回顾 npm install 命令 最近在写Node程序的时候,突然对 npm install 的-save和-save-dev 这两个参数的使用比较混乱.其实博主在这之前对这两个参数的理解也是模糊的,各种查资料和实践后对它们之间的异同点略有理解.遂写下这篇文章避免自己忘记,同时也给node猿友一点指引. 我们在使用 npm install 安装模块的模块的

npm install 和npm install --save 以及npm install --save-dev区别

个人理解,也许有局限 1. npm install 下载的东西是在package.json已经存在的东西,会将包安装到node_modules目录中. 2.npm install --save 会在package.json的dependencies中添加,会将包安装到node_modules目录中. 3.npm install --save-dev 会在package.json的devDependencies中添加,同时也会将包安装到node_modules目录中. 我之前遇到一个困惑的问题是,

了解 npm install -S -D 的区别,看这篇就完事了

一.npm install -S -D 的区别 npm install module_name -S 即 npm install module_name --save 写入dependencies npm install module_name -D 即 npm install module_name --save-dev 写入devDependencies npm install --save (1)会把msbuild包安装到node_modules目录中 (2)会在package.json的