web-dev-qa-db-fra.com

NPM ERR !: CODE 127. GYPR ERR! Erreur de pile: la commande a échoué

Je reçois l'erreur suivante en faisant npm install:

$ npm install
npm ERR! code 127
npm ERR! path /home/jesusjimenez/projects/project/node_modules/fibers
npm ERR! command failed
npm ERR! command sh -c node build.js || nodejs build.js
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | linux | x64
npm ERR! gyp ERR! configure error 
npm ERR! gyp ERR! stack Error: Command failed: /usr/bin/python3 -c import sys; print "%s.%s.%s" % sys.version_info[:3];
npm ERR! gyp ERR! stack   File "<string>", line 1
npm ERR! gyp ERR! stack     import sys; print "%s.%s.%s" % sys.version_info[:3];
npm ERR! gyp ERR! stack                       ^
npm ERR! gyp ERR! stack SyntaxError: invalid syntax
npm ERR! gyp ERR! stack 
npm ERR! gyp ERR! stack     at ChildProcess.exithandler (node:child_process:326:12)
npm ERR! gyp ERR! stack     at ChildProcess.emit (node:events:369:20)
npm ERR! gyp ERR! stack     at maybeClose (node:internal/child_process:1067:16)
npm ERR! gyp ERR! stack     at Socket.<anonymous> (node:internal/child_process:453:11)
npm ERR! gyp ERR! stack     at Socket.emit (node:events:369:20)
npm ERR! gyp ERR! stack     at Pipe.<anonymous> (node:net:665:12)
npm ERR! gyp ERR! System Linux 5.8.0-48-generic
npm ERR! gyp ERR! command "/usr/bin/node" "/home/jesusjimenez/projects/project/node_modules/.bin/node-gyp" "rebuild" "--release"
npm ERR! gyp ERR! cwd /home/jesusjimenez/projects/project/node_modules/fibers
npm ERR! gyp ERR! node -v v15.12.0
npm ERR! gyp ERR! node-gyp -v v3.8.0
npm ERR! gyp ERR! not ok 
npm ERR! node-gyp exited with code: 1
npm ERR! Please make sure you are using a supported platform and node version. If you
npm ERR! would like to compile fibers on this machine please make sure you have setup your
npm ERR! build environment--
npm ERR! Windows + OS X instructions here: https://github.com/nodejs/node-gyp
npm ERR! Ubuntu users please run: `Sudo apt-get install g++ build-essential`
npm ERR! RHEL users please run: `yum install gcc-c++` and `yum groupinstall 'Development Tools'` 
npm ERR! Alpine users please run: `Sudo apk add python make g++`
npm ERR! sh: 1: nodejs: not found

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/jesusjimenez/.npm/_logs/2021-03-30T21_32_02_097Z-debug.log

Je ne sais pas complètement ce qui brise l'installation, si des fibres ou d'une manière ou d'une autre que python SyntaxError: invalid syntax Toutefois, essayez d'installer des fibres dans la même erreur. npm i -g fibers Ne résout pas, ni la modification de npm configure set python /path/to/python. Supprimer des fibres ne conserve momentanément la même chose Python SyntaxError: invalid syntax, cette fois avec un autre nœud_module.

3
Jesus Jimenez

Le problème est que node-gyp tente de construire avec Python 2 Syntaxe: print "%s.%s.%s" % sys.version_info[:3]; qui jette une erreur probablement parce que vous avez Python 3 sur ton ordinateur.

Cela se produit généralement lors de l'installation d'un module npm non compatible avec la version actuelle Node de votre système. Essayez d'installer Python 2 et réglez-le sur le chemin, ou localisez le module fautif en package.json, puis mettez à niveau le numéro de version sur celui qui est compatible avec votre fichier actuel Node version.

0
Erisan Olasheni

J'ai eu le même problème/question similaire sans apporter de modifications à la version du nœud. Je déteste être ce gars, mais après une journée de lutte contre elle, j'ai décidé de redémarrer ma machine. Cela corrigé-le ...

0
Scr0t