我在安装canvas时,出现error MSB4019: The imported project "c:\Microsoft.Cpp.Default.props" was not found
1.安装chocolatey,没有深入研究,应该使类似npm得工具,如果不想跳入链接,可以直接以管理员身份运行cmd,然后直接拷贝
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
2.安装需要得软件,choco install -y python2 gtk-runtime microsoft-build-tools libjpeg-turbo,等待安装成功;
3.我后来发现,还需要下载
Visual C++ 2015 Build Tools
点击打开链接,要不然C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\v140这个东西不存在;
4.下载GTK,因为需要其中得cairo,链接为64位得GTK,下载完成后解压至C:\GTK下;
5.最为关键得一步,直接在cmd下运行,set VCTargetsPath=C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\v140;
6.安装时选择msvs版本,比如我要在项目下安装,npm install --msvs_version=2015,应该就可以了。
参考
https://chocolatey.org/install#installing-chocolatey
https://github.com/Automattic/node-canvas/wiki/Installation---Windows#installing-cairo-library
https://github.com/lovell/sharp/issues/985