【Windows】node-gyp ERRで困ったときの対処法
electronでディープリンク(Custom URL Schema)実装時にelectron-deeplink を使おうと思ったのですが、そこでnode-gypのエラーが出て躓いたので、その時の対処法をメモします。
ディープリンクについてはelectron-deeplinkを使って実装したら(少なくとも開発環境では)簡単にできましたので割愛します。
結論
Python や Visual C++ といった必要なものをインストールする
エラー内容
yarn add electron-deeplink
したところ、
gyp ERR! find Python
gyp ERR! find Python Python is not set from command line or npm configuration
とか、Pythonをインストールした後も
gyp ERR! find VS
gyp ERR! find VS You need to install the latest version of Visual
Studio
gyp ERR! find VS including the "Desktop development with C++" workload.
という感じで
参考
nodejs/node-gyp
Windowsでnpm installしてnode-gypでつまずいた時対処方法
ERR! find Pythonと出た場合のPythonインストール
powershell
python
python
と打つと、Python公式ページが開くのでそこからダウンロード&インストール
(バージョンはnodejs/node-gypから対応してるものを選ぶように)
ぼくの場合はこれでも「VSが見つからん!」と怒られたのでwindows-build-tools
を使いました。
yarn add global windows-build--tools
で、成功すれば下記の表示が出るので、vs_BuildTools.exe
を起動します
Downloaded vs_BuildTools.exe. Saved to C:\Users\{ユーザ名}\.windows-build-tools\vs_BuildTools.exe.
PS C:\Users\{ユーザ名}> .\.windows-build-tools\vs_BuildTools.exe
起動できると下記のような画面が出ます。
ぼくの場合とりあえず一度デフォルトのままインストールしたものの、再度modifyをしてインストールしたので表示が違うかもしれません
Visual C++ build tools
にチェックを入れて、Install
or Modify
をクリック
electron-deeplink インストールし直す
bash
yarn add electron-deeplink
#なんやかんや
$ electron-builder install-app-deps
• electron-builder version=22.9.1
• loaded configuration file=C:\Users\{path-to-project}\electron-builder.yml
• rebuilding native dependencies dependencies=[email protected] platform=win32 arch=x64
• rebuilding native dependency name=electron-deeplink version=1.0.6
Done in 36.12s.
yarn add electron-deeplink
#なんやかんや
$ electron-builder install-app-deps
• electron-builder version=22.9.1
• loaded configuration file=C:\Users\{path-to-project}\electron-builder.yml
• rebuilding native dependencies dependencies=[email protected] platform=win32 arch=x64
• rebuilding native dependency name=electron-deeplink version=1.0.6
Done in 36.12s.
これで解決
ディープリンクも簡単に実装できました。
Author And Source
この問題について(【Windows】node-gyp ERRで困ったときの対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/badpingpong/items/91a8760c20b40be3cbc6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .