web-dev-qa-db-fra.com

L'installation de npm échoue lors de la reconstruction de node-gyp avec `` gyp: Aucune version Xcode ou CLT détectée! ''

Chaque fois que j'essaye de faire npm install Je reçois l'erreur suivante. Comment puis-je réparer ça? Je suis sur node -v → v8.8.0 & npm -v → v6.11.3

J'ai essayé de l'exécuter sur vsCode terminal et iTerm, j'ai fini par avoir la même erreur. (les deux sont mis à jour avec la dernière version). La seule nouveauté que j'ai faite est de mettre à jour mon macOS avec la dernière version, c'est-à-dire Catalina 10.15.3 aujourd'hui.

$ npm install          Fri Mar  6 17:22:40 2020

> [email protected] install /Users/synapse/Documents/synapsefi-dev-ui/node_modules/watchpack/node_modules/fsevents
> node-gyp rebuild

No receipt for 'com.Apple.pkg.CLTools_Executables' found at '/'.

No receipt for 'com.Apple.pkg.DeveloperToolsCLILeo' found at '/'.

No receipt for 'com.Apple.pkg.DeveloperToolsCLI' found at '/'.

gyp: No Xcode or CLT version detected!
gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack     at ChildProcess.onCpExit (/Users/synapse/.nvm/versions/node/v8.8.0/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:344:16)
gyp ERR! stack     at emitTwo (events.js:125:13)
gyp ERR! stack     at ChildProcess.emit (events.js:213:7)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)
gyp ERR! System Darwin 19.3.0
gyp ERR! command "/Users/synapse/.nvm/versions/node/v8.8.0/bin/node" "/Users/synapse/.nvm/versions/node/v8.8.0/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/synapse/Documents/synapsefi-dev-ui/node_modules/watchpack/node_modules/fsevents
gyp ERR! node -v v8.8.0
gyp ERR! node-gyp -v v5.0.3
gyp ERR! not ok
npm WARN [email protected] No repository field.
npm WARN The package country-data is included as both a dev and production dependency.
npm WARN The package react-dropzone is included as both a dev and production dependency.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/watchpack/node_modules/fsevents):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] install: `node-gyp rebuild`
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: Exit status 1
62
Jeena

Cela a fonctionné pour moi avec macOS Catalina version 10.15.5:

$ xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
$ Sudo xcode-select --switch /Library/Developer/CommandLineTools
...
$ Sudo xcode-select --reset
...

Les outils xcode cli devraient maintenant être accessibles. Pas besoin de réinstaller quoi que ce soit.

1
Dane_duPlessis

J'ai fait exactement cela, mon problème est parti maintenant. Première: xcode-select --print-path il a donné le chemin /Library/Developer/CommandLineTools

alors:

Sudo rm -rf /Library/Developer/CommandLineTools
xcode-select --install

il ouvre la fenêtre d'installation, installez simplement et vous êtes sur votre chemin.

Merci Stackoverflow!

0
Sreedar Raju