1. 程式人生 > 其它 >npm安裝windows-build-tools時卡在Successfully installed Python

npm安裝windows-build-tools時卡在Successfully installed Python

npm安裝windows-build-tools時卡在Successfully installed Python

在使用vue.js的過程中,我們經常遇到缺少python2.7和VS 2017等構建工具,在網路上查閱相關教程後,得知需要安裝windows-build-tools工具,但在安裝過程中很多人都遇到Windows PowerShell中卡到Successfully installed Python時不動的情況。

解決步驟

  1. 執行npm install -g windows-build-tools

    npm install -g windows-build-tools
    
  2. 在環境變數中找%temp%資料夾下的dd_installer_XXXXXX.log檔案(如:dd_installer_20210824256821.log

  3. 檢視此檔案,確保日誌中輸出了Closing the installer with exit code 0。

    Closing the installer with exit code 0
    
  4. 確保你安裝了Visual Studio Build Tools,在開始選單裡查詢Visual Studio Build Tools是否安裝完成。

  5. 在%temp%目錄下建立一個名為dd_client_.log的檔案

    dd_client_.log
    
  6. 編輯5中建立的檔案,加入一行Closing installer. Return code: 3010.然後儲存。

    Closing installer. Return code: 3010
    

注:%temp%資料夾預設時為C:\Users\【使用者名稱】\AppData\Local\Temp,如我的就是

C:\Users\admin\AppData\Local\Temp

參考資料:https://github.com/felixrieseberg/windows-build-tools/issues/244