24
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows環境でnpm installでエラーが発生する場合の対処法

Posted at

Windows環境(と、Windowsホストの共有フォルダにVagrantなどからnpmを実行した場合)では、npm installで以下のエラーが発生することがある。

npm install express
npm ERR! EPROTO: protocol error, symlink '../mime/cli.js' -> '/home/vagrant/project/node_modules/.bin/mime'

この場合、--no-bin-linksを付けてインストールする。

npm install express --no-bin-links
24
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
24
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?