npm で electron を導入する際のエラー ( Ubuntu 18.04 )
npm で electron を Ubuntu18.04 にインストールする際にエラーが出たのでその対処法をメモ程度にまとめます。
まず、npm 及び node のバージョンは次のとおりです。
$ npm -v
6.4.1
$ node -V
v10.10.0
npm、node の導入には "とりあえず Ubuntu で新しい Node.js, npm をインストール" を参考にさせていただきました。
次のコマンドで electron をインストールしようとしたところ、以下のようなエラーが出力されました。
$ sudo npm -g install electron
/usr/local/bin/electron -> /usr/local/lib/node_modules/electron/cli.js
> [email protected] postinstall /usr/local/lib/node_modules/electron
> node install.js
/usr/local/lib/node_modules/electron/install.js:54
throw err
^
Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/electron/dist'
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] postinstall: `node install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/tmurakami/.npm/_logs/2018-09-18T10_10_46_444Z-debug.log
調べたところ次のコマンドで electron をインストールすることが出来ました ( オプション --allow-root なしでもインストールは可能でした)。
sudo npm -g install electron --unsafe-perm=true --allow-root
問題の解決に当たって、次のページを参考にしました。
Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/electron/.electron' #17268
Author And Source
この問題について(npm で electron を導入する際のエラー ( Ubuntu 18.04 )), 我々は、より多くの情報をここで見つけました https://qiita.com/tmurakami1234/items/d60f305ef9ce50db493a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .