web-dev-qa-db-fra.com

Erreur lors de l'installation de node-gyp sur Ubuntu

npm http 200 https://registry.npmjs.org/weak/-/weak-0.2.2.tgz
npm http GET https://registry.npmjs.org/bindings
npm http 304 https://registry.npmjs.org/bindings

> [email protected] install node_modules/weak
> node-gyp rebuild

Traceback (most recent call last):
  File "/usr/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py", line 18, in <module>
    sys.exit(gyp.script_main())
AttributeError: 'module' object has no attribute 'script_main'
gyp ERR! configure error 
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack     at ChildProcess.onCpExit (/usr/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:337:16)
gyp ERR! stack     at ChildProcess.EventEmitter.emit (events.js:98:17)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (child_process.js:789:12)
gyp ERR! System Linux 3.11.0-15-generic
gyp ERR! command "node" "/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"

gyp ERR! node -v v0.10.15
gyp ERR! node-gyp -v v0.12.1
gyp ERR! not ok 
npm ERR! [email protected] install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the [email protected] install script.
npm ERR! This is most likely a problem with the weak package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get their info via:
npm ERR!     npm owner ls weak
npm ERR! There is likely additional logging output above.

npm ERR! System Linux 3.11.0-15-generic
npm ERR! command "node" "/usr/bin/npm" "install" "[email protected]"
npm ERR! node -v v0.10.15
npm ERR! npm -v 1.3.23
npm ERR! code ELIFECYCLE

npm ERR! not ok code 0

Je n'ai pas de dépendance directe sur faible ou node-gyp mais je suppose que cela est requis par mes autres dépendances (express, fantôme, ejs, aws-sdk, moment). Quelqu'un a fait face à un tel problème et a pu le résoudre?

33
Pratik Mandrekar

Voilà ce qui a fonctionné. Vous avez besoin de python 2.6 pendant l'installation.

#!/bin/bash
#On Ubuntu Saucy:
Sudo add-apt-repository ppa:fkrull/deadsnakes
Sudo apt-get update
Sudo apt-get install python2.6
Sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.6 20
Sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 10

#you can switch between 2.6 & 2.7 using:
Sudo update-alternatives --config python

#Btw I installed node using ppa:chris-lea/node.js

https://github.com/TooTallNate/node-gyp/issues/36

23
Pratik Mandrekar

Si votre version python n'est pas la source d'erreur, vérifiez si vous avez installé "gyp". Cela est en conflit avec la version gyp dans node-gyp.

apt-get remove gyp

https://github.com/TooTallNate/node-gyp/issues/363#issuecomment-32234646

33
P.Scheit

Cette commande Sudo apt-get install build-essential aidé dans mon cas.

21
xpepermint

FWIW, j'ai eu un problème similaire en essayant d'installer Protractor sur Ubuntu 14.04 (DigitalOcean). La réinstallation de node-gyp a corrigé le problème:

apt-get install node-gyp
17
Brine

sur Ubuntu 18, j'ai dû installer les bibliothèques de build requises pour le faire fonctionner

Sudo apt-get install build-essential
4
Bheru Lal Lohar

J'ai rencontré ce problème sur Ubuntu 16.04 en essayant d'installer l'extension wikimedia mathoid.

J'ai essayé tout ce qui a été suggéré et rien n'a fonctionné jusqu'à ce que je le fasse:

Sudo apt-get install librsvg2-2 librsvg2-dev
3
joshuar

Voici les étapes pour installer avec succès node-gyp sur un système Ubuntu:

1. Tout d'abord, installez l'outil de construction "make" dans Ubuntu avec les commandes suivantes:

Sudo apt-get update && \
Sudo apt-get install build-essential software-properties-common -y;

2. Ensuite, vous devez installer la chaîne d'outils du compilateur C/C++ appropriée. Nous allons installer GCC ici avec les commandes suivantes:

Sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && \
Sudo apt-get update && \
Sudo apt-get install gcc-snapshot -y && \
Sudo apt-get update && \
Sudo apt-get install gcc-6 g++-6 -y && \
Sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave 
/usr/bin/g++ g++ /usr/bin/g++-6 && \
Sudo apt-get install gcc-4.8 g++-4.8 -y && \
Sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 60 --slave 
/usr/bin/g++ g++ /usr/bin/g++-4.8;

3. Installez la version python 2.7. (Remarque: Python 3 n'est pas pris en charge par node-gyp).

Sudo apt update
Sudo apt upgrade
Sudo apt install python2.7 python-pip

4. Et enfin, installez le paquet node-gyp npm:

npm install -g node-gyp

Supplémentaire mais pas important: Si vous avez un atom problème lié à la disposition du clavier avec node-gyp, installez le package suivant:

Sudo apt-get install libxkbfile-dev

C'est tout! Cela devrait bien fonctionner maintenant.

2
Manish Jangir

Sur Ubuntu 10.04, l'installation de libicu a résolu mon problème.

Sudo apt-get install libicu-dev

2
Sagar Ranglani

Sur Fedora 20, la réinstallation de gyp a résolu ce problème pour moi.

Sudo yum reinstall gyp
1
mwcz