Lightning-Network
嘗試安裝 filebazaar 時遇到 ELIFECYCLE 錯誤
嘗試在 Ubuntu 18.04 上安裝filebazaar並在模組上出現錯誤
canvas
……熟悉這個問題的人嗎?我一直在處理 node-canvas 的 github 問題(例如我留下評論的問題),但到目前為止,沒有一個解決方案對我有用。這是我正在執行的命令:
$ sudo npm install -g filebazaar
這是錯誤輸出:
$ sudo npm install -g canvas@1.6.13 > canvas@1.6.13 install /usr/local/lib/node_modules/canvas > node-gyp rebuild gyp ERR! configure error gyp ERR! stack Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/canvas/build' gyp ERR! System Linux 4.15.0-55-generic gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" gyp ERR! cwd /usr/local/lib/node_modules/canvas gyp ERR! node -v v12.5.0 gyp ERR! node-gyp -v v3.8.0 gyp ERR! not ok npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! canvas@1.6.13 install: `node-gyp rebuild` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the canvas@1.6.13 install 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/chris/.npm/_logs/2019-09-17T20_39_13_514Z-debug.log
任何幫助表示讚賞:)
也許目錄沒有適當的權限,試試這個命令
sudo chmod 777
如果它仍然不起作用,請在安裝前嘗試這些標誌
sudo npm install -g --unsafe-perm
要麼
sudo node-gyp rebuild -g --unsafe-perm
然後再試一次
我發現了這個問題:有一些目錄由 root 擁有,需要由我的使用者擁有。
我讓自己擁有一些與 npm 相關的文件夾,例如:
sudo chown -R
whoami/usr/local/lib/node_modules
…這似乎已經解決了這個問題。