установка модулей npm на ubuntu выдает ошибку - PullRequest
0 голосов
/ 18 ноября 2018

я получил следующую ошибку при попытке установить пакет npm, который называется sharp.

sudo npm install -g sharp

> sharp@0.21.0 install /usr/local/lib/node_modules/sharp
> (node install/libvips && node install/dll-copy && prebuild-install) || (node-gyp rebuild && node install/dll-copy)

info sharp Downloading https://github.com/lovell/sharp-libvips/releases/download/v8.7.0/libvips-8.7.0-linux-x64.tar.gz
ERR! sharp EACCES: permission denied, open '/usr/local/lib/node_modules/sharp/19229-libvips-8.7.0-linux-x64.tar.gz'
ERR! sharp Please see http://sharp.pixelplumbing.com/page/install
gyp WARN EACCES user "root" does not have permission to access the dev dir "/home/areahints/.node-gyp/8.10.0"
gyp WARN EACCES attempting to reinstall using temporary dev dir "/usr/local/lib/node_modules/sharp/.node-gyp"
gyp WARN install got an error, rolling back install
gyp WARN install got an error, rolling back install
gyp ERR! configure error 
gyp ERR! stack Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/sharp/.node-gyp'
gyp ERR! System Linux 4.15.0-39-lowlatency
gyp ERR! command "/usr/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/sharp
gyp ERR! node -v v8.10.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok 
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! sharp@0.21.0 install: `(node install/libvips && node install/dll-copy && prebuild-install) || (node-gyp rebuild && node install/dll-copy)`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the sharp@0.21.0 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/areahints/.npm/_logs/2018-11-18T16_14_58_685Z-debug.log

запуск одного и того же кода без sudo приводит к другой ошибке

npm install -g sharp
npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules
npm ERR! path /usr/local/lib/node_modules
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules'
npm ERR!  { Error: EACCES: permission denied, access '/usr/local/lib/node_modules'
npm ERR!   stack: 'Error: EACCES: permission denied, access \'/usr/local/lib/node_modules\'',
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/usr/local/lib/node_modules' }
npm ERR! 
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR! 
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator (though this is not recommended).

У меня аналогичные проблемы с node-expat, iconv и libxmljs. Я попытался установить все зависимости и dev-зависимости и повторил безрезультатно.

Ответы [ 2 ]

0 голосов
/ 09 мая 2019

Я тоже сталкивался с этой проблемой.Мне удалось разрешить его с помощью этой команды:

sudo npm install --unsafe-perm -g sharp

Ссылка.

0 голосов
/ 19 ноября 2018

Похоже, проблема в том, что у вас нет разрешений.

sudo chown -R areahints /home/areahints && sudo chmod -R 777 /home/areahints

повторите этот шаг для любого каталога, в котором говорится, что у вас нет разрешений для ^

sudo apt-get update –fix-missing
sudo dpkg –configure -a
sudo apt-get install -f

Это должнопомогите восстановить поврежденные пакеты и установить недостающие зависимости ^

sudo apt-get update
sudo apt-get upgrade
sudo apt-get update
sudo apt-get autoremove

это должно быть сделано перед установкой чего-либо, а также после того, как ^

обновился до 18.04 из другого дистрибутива или это была новая установка?Я спрашиваю об этом, потому что иногда возникают конфликты при обновлении.всегда лучше делать новую установку ОС, когда это новый дистрибутив.

Это корень проблем, с которыми вы сталкиваетесь ваш другой вопрос

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...