Используйте узел-гип с атомом - PullRequest
3 голосов
/ 18 января 2020

Я видел много уроков по запуску файлов c ++ с узлом. Большинство из этих руководств используют пакет под названием node-gyp. Я пытался установить это через npm с

npm i node-gyp -g

, и это работает. Проблемы возникают, когда я настраиваю node-gyp, используя:

node-gyp configure

Когда я использую эту команду, она выдает эту ошибку:

gyp info it worked if it ends with ok
gyp info using node-gyp@6.1.0
gyp info using node@12.13.1 | win32 | x64
gyp info find Python using Python version 3.8.0 found at "...Path to Python"
gyp ERR! find VS
gyp ERR! find VS msvs_version not set from command line or npm config
gyp ERR! find VS VCINSTALLDIR not set, not running in VS Command Prompt
gyp ERR! find VS could not use PowerShell to find Visual Studio 2017 or newer
gyp ERR! find VS looking for Visual Studio 2015
gyp ERR! find VS - not found
gyp ERR! find VS not looking for VS2013 as it is only supported up to Node.js 8
gyp ERR! find VS
gyp ERR! find VS **************************************************************
gyp ERR! find VS You need to install the latest version of Visual Studio
gyp ERR! find VS including the "Desktop development with C++" workload.
gyp ERR! find VS For more information consult the documentation at:
gyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows
gyp ERR! find VS **************************************************************
//more error stuff

Я использую атом, и если бы я мог использовать это без vscode, я бы оценил это.

1 Ответ

1 голос
/ 18 января 2020

Код Visual Studio и Visual Studio, несмотря на одинаковое название, являются совершенно не связанными продуктами. Как упоминалось в журнале ошибок, вам необходимо установить версию Visual Studio, совместимую с node-gyp («Visual Studio 2017 или выше»). Причиной этой зависимости являются компиляторы C / C ++, включенные в Visual Studio. Бесплатной общественной версии должно хватить, чтобы вы начали.

...