You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running $npm install works well on Mac and Linux, but there are some errors when attempting to run it on Windows.
In particular, when trying to run $npm install in PowerShell or Git Bash for Windows, the command errors out due to Python not being installed. Once the user installs Python, it then errors out indicating that Visual Studio (not VSCode) is not installed on the system.
We need to investigate this and get it installing (and running tests) cleaning in a Windows environment.
The text was updated successfully, but these errors were encountered:
After some troubleshooting, I followed the steps below to resolve "npm instal" issue:
Install Python
Ensure Desktop development with C++ component is installed in VS2019 (or whatever VS version you have)
At this point I had an error related to lzma-native module with I had to install by running "npm install --save lzma-native". See https://www.npmjs.com/package/lzma-native
Finally I can run "npm test" successfully but 18 of 133 tests are failing in my forked master branch
I definitely want to take a look at the VS requirement - I don't think it's reasonable to expect people outside of Microsoft to have Visual Studio (note this refers to Visual Studio itself, not VSCode) installed since it is so expensive.
Running
$npm install
works well on Mac and Linux, but there are some errors when attempting to run it on Windows.In particular, when trying to run
$npm install
in PowerShell or Git Bash for Windows, the command errors out due to Python not being installed. Once the user installs Python, it then errors out indicating that Visual Studio (not VSCode) is not installed on the system.We need to investigate this and get it installing (and running tests) cleaning in a Windows environment.
The text was updated successfully, but these errors were encountered: