Getting set up as a developer instructions, simply doesn't work on Windows 10 / MSYS
See original GitHub issueAt first I needed npm, which I installed using the Node.js binary installer today.
Now, make is available in the MSYS terminal but not on the Windows cmd.
Vise versa, npm is available in the Windows cmd but not the MSYS terminal.
So I copied the C:\msys64\usr\bin path to my Path env var in my computer’s settings, so that cmd would have access to make. But now, running make in this project’s directory gives:
C:\Users\fruit\OneDrive\Desktop\vscoq>make
npm install
/bin/bash: C:/Program Files/nodejs/npm: No such file or directory
make: *** [Makefile:8: node_modules] Error 127
I verified that yes, npm is indeed present at the printed out location that supposedly didn’t exist. Could it be because of the space char in “Program Files”?
Issue Analytics
- State:
- Created a year ago
- Comments:15 (5 by maintainers)
Top Results From Across the Web
Installation using MSYS2 and the MinGW Compilers
Launch the “MSYS MinGW 64-bit” option to use the MinGW 64bit toolchain, producing 64bit binaries that run on 64bit Windows systems. The “MSYS...
Read more >Enable your device for development - Windows apps
You can go to the For developers settings page at any time to enable or disable Developer Mode. Simply enter for developers into...
Read more >MSYS2-Installation
Note: if you are using 64-bit Windows, there is no reason to use 32-bit MSYS2. Well, to be honest, there is one reason:...
Read more >How To Install MinGW 64 Bit Windows 7 10 11 C ... - YouTube
error that so many people have been getting ! MinGW w64 archive just in case you run into "file downloaded incorrectly" error: ...
Read more >How to Install MinGW (GCC/G++) Compiler in Windows 10
In this video we will see How to Install MinGW (GCC/G++) Compiler in Windows 10. MinGW, a contraction of “Minimalist GNU for Windows”, ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
No, npm install merely fetches the listed dependencies to node_modules. You’re free to modify the extension as you see fit.
On Sat, Sep 3, 2022, at 7:34 PM, Enjoys Math wrote:
npm install.
On Sat, Sep 3, 2022, at 7:29 PM, Enjoys Math wrote: