我有一个依赖于d3
版本的项目,3.5.3
并且依赖于contextify
. 当它运行时,node-gyp
它会爆炸。一般来说,我可以通过指定 来解决这个问题msvs_version=2015
,但这不起作用。因此,我执行了以下操作:
- 修改了我的 VS 2015 安装并安装了所有内容,然后将其包括在内
Common Tools for Visual C++
。 - 执行
npm install -g windows-build-tools
。 - 执行
npm config set msvs_version 2015
即使有这些步骤,我仍然收到此错误:
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.Cpp.Platform.targets(44,5):
error MSB8020: The builds tools for v140 (Platform T oolset = 'v140') cannot be found.
To build using the v140 build tools, either click the Project menu or right-click the solution,
and then select "Update VC++ Projects...". Install v140 to build using the v140 build tools.
对我来说有趣的部分是它试图在v110
; 我只是不确定为什么。