5
1

More than 3 years have passed since last update.

Python PyInstaller で急に No module named pyinstaller

Last updated at Posted at 2020-05-21

いままで
py -m pyinstaller Test.py
でできていたはずなのに、メモものこっていたのに・・・ パスもあっているのに・・・
急に No module named pyinstaller とでてくるようになりました。

環境

・Windodws10
・Python 3.8.3
・PyInstaller 3.6

結論

pyinstaller → PyInstaller にしたら解決しました。

解決までの道のり

①そもそも pyinstaller はあるのか
windowsなので以下のコマンドでpyinstallerがあるかどうか確認する
py -m pip list
②出力されたリストにあるのはなんと
PyInstaller
大文字になってるじゃない

以前からそうでしたっけ

自分の環境では
py -m PyInstaller Test.py
でできました。

ただの自分の勘違いで最初から PyInstaller だったかもしれないですが、
それとも、pipでバージョンアップをしたからでしょうか。
とりあえず今回はこれで解決しました。

 

5
1
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
5
1