Plesk устанавливает npm пакеты Ошибка
Я создал API, который использует hummus.js
модули. Локально проверено -> Работает нормально.
Теперь я загрузил свой API и попытался запустить npm install
установить все зависимости. Но я получил эту ошибку:
npm-Installation
Execution filemng has failed with exit code 1, stdout:
> hummus@1.0.81 install /var/www/vhosts/XXX/XXX/node_modules/hummus
> node-pre-gyp install --fallback-to-build
, stderr: npm WARN lifecycle npm is using /opt/plesk/node/7/bin/node but there is no node binary in the current PATH. Use the `--scripts-prepend-node-path` option to include the path for the node binary npm was executed with.
/usr/bin/env: 'node': No such file or directory
npm WARN XXX@0.0.1 No description
npm WARN XXX@0.0.1 No repository field.
npm WARN XXX@0.0.1 No license field.
npm ERR! Linux 4.4.0-21-generic
npm ERR! argv "/opt/plesk/node/7/bin/node" "/opt/plesk/node/7/bin/npm" "install"
npm ERR! node v7.4.0
npm ERR! npm v4.0.5
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! hummus@1.0.81 install: `node-pre-gyp install --fallback-to-build`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the hummus@1.0.81 install script 'node-pre-gyp install --fallback-to-build'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the hummus package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! node-pre-gyp install --fallback-to-build
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs hummus
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls hummus
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /var/www/vhosts/XXX/XXX/npm-debug.log
Ошибка исходит от hummus-js
пакет. Поэтому я хочу попробовать установить node-gyp
(npm install -g node-gyp
). Но я не знаю как? В Plesk я не могу установить ни одного модуля. Когда я пытаюсь сделать это с помощью ssh, я получаю:
команда NPM не найдена
Я Server-Admin-Noob, поэтому я рад за любую помощь!
Привет
РЕДАКТИРОВАТЬ: Мой сервер = Ubuntu 16.04 LTS Server 64bit + Plesk Onyx
1 ответ
Если я правильно предположил, это сводится к тому, что у вас не установлен Node на другой машине. SSH в машину, затем, для запуска Debian и ОС на основе Ubuntu
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
(при условии, опять же, что вы хотели Node 8.x), затем запустите
sudo apt-get install -y build-essential
и для CentOS и других корпоративных ОС Linux:
curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash -
sudo yum -y install nodejs
sudo yum install gcc-c++ make
Затем попробуйте повторить то, что вы сделали.