So I am trying to install a Node package called better-sqlite-pool, however I am stuck with an error which I can\'t seem to resolve. Whenever I run npm i better-sqlite-p
I have a rather similar issue, and got stock at the same point. I found two possible solutions over here:
The first option works for me:
npm install --global --production --vs2015 windows-build-tools
npm install --global --production windows-build-tools
(this one gets stuck during the installation, ctrl-c to end it)npm install --global --production windows-build-tools
(yes, the same command again to finish the configuration)npm config set msvs_version 2015 --global
Since I'm not a real programmer I wouldn't know where to begin for the latter option.