1
2

More than 3 years have passed since last update.

PythonGUIによる簡易営業ツール作成:デスクトップアプリ公開

Posted at

今まで作成したGUIアプリを他の人にも使ってもらえる公開メモ。

1.Spyderで作成したコードを新規作成したフォルダに保存(ファイル名.py)

2.Anaconda Promptで下記コマンド入力

pip install pyinstaller

3.Anaconda Promptで下記コマンド入力

cd C:\新規作成したフォルダ名 #.pyファイル保存のフォルダ先へ移動
pyinstaller ファイル名.py --onefile

4.少し待って、distフォルダに.exeが作成される

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