LoginSignup
0
0

【Pyinstaller】誤検知を回避する

Posted at

本当に自分用のメモでゴメンナサイ…

の手順で実施すると次のコマンドでエラーが起きた。

python ./waf distclean all

Checking for 'msvc' (C compiler)         : not found
Checking for 'gcc' (C compiler)          : not found
Checking for 'clang' (C compiler)        : not found
could not configure a C compiler!

なので、下のサイトに従いchocoをインストールする。

ただこれも次のコマンドで詰まる。

choco install -y python vcbuildtools

エラーが出てインストールにfailする。

なので、オフィシャルに従い次のコマンドを実行する。

choco install -y python3 visualstudio2019-workload-vctools

これでpython ./waf distclean allが通った。

後は↓に戻って従えばOK

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0