Пересоздание узла не удалось в Mac OS High Sierra во время установки npm - PullRequest
0 голосов
/ 01 ноября 2018

Я получаю следующую ошибку в терминале, когда он пытается установить один из пакетов "node-expat". Я попытался переключиться на другую версию узла с помощью nvm, но все равно происходит сбой с той же ошибкой.

gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /usr/local/lib/node_modules/node-expat
npm ERR! node v6.5.0
npm ERR! npm  v3.10.3
npm ERR! code ELIFECYCLE
npm ERR! node-expat@2.0.0 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the node-expat@2.0.0 install script 'node-gyp rebuild'.
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 node-expat 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 information on how to open an issue for this project with:
npm ERR!     npm bugs node-expat
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls node-expat
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     c:\<redacted>\npm-debug.log

Я продолжил установку x-кода, как это было предложено на странице git hub, на моей машине, а затем он выдает следующую ошибку. Не уверен, как отлаживать дальше.

xcode-select: error: tool 'xcodebuild' requires Xcode, 
but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance

1 Ответ

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

Я только что исправил это на моей машине и на машине моего коллеги.

Выполните следующие шаги, чтобы исправить это на MacOS highSierra 10.13:

  1. Скачал инструменты командной строки (MacOS 10.13) для xcode и установил его. Загрузите его с "https://developer.apple.com/download/more/"
  2. Установил xcode 10.0 из магазина приложений. Открыл xcode и прошел обычную настройку xcode при первоначальном запуске.
  3. После этого он начал задавать проблему пути "xcode-select", как указано в описании выше. При выполнении команды " xcode-select --print-path " он показывал путь как '/ Library / Developer / CommandLineTools', поэтому я попытался " xcode-select --reset", после чего путь изменился на" / Applications / Xcode.app / Contents / Developer". Сразу после этого сборка начала работать без проблем.
...