Based on the answer on the first floor. First of all, why do your dependencies have two identical attributes. That means you are missing node-gyp, a dependency package that parses C++ code. You need to first npm install node-gyp --save-dev to install the dependencies.
Install node-gpy, and then use node-gpy rebuild to install the dependency, thinking that this dependency is not developed with js, but uses native code developed in C++.
Based on the answer on the first floor. First of all, why do your dependencies have two identical attributes.
That means you are missing node-gyp, a dependency package that parses C++ code. You need to first npm install node-gyp --save-dev to install the dependencies.
Install node-gpy, and then use
node-gpy rebuild
to install the dependency, thinking that this dependency is not developed with js, but uses native code developed in C++.Hello, can you be more specific? I don’t quite understand how I should write it