0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Visual Studio Code で Python のプログラムを書いてみた(その1)

Last updated at Posted at 2021-12-12

はじめに
Visual Studio Code で Python のプログラムを作成し Exe にして実行した。
Raspberry Pi 上のエディタで簡単なプログラムを作ったが Visual Studio Code では、初体験。

簡単にまとめてみた。

が、これだけではダメであった。下記を参考して下さい。
参考:Visual Studio Code で Python のプログラムを書いてみた(その2)


1.Visual Studio Code の拡張機能として Python extension for Visual Studio Code をインストールした。
image.png

2.<ファイル>-<新規作成>-<言語の選択> より Python を選ぶ
image.png

3.簡単なプログラムを書く

print("Hello Python!")

4.<実行>-<デバッグなしで実行> を行えば ターミナルに Hello Python! と表示される

5. Exe に変換するために pyinstaller を下記手順で ターミナル上で インストールする

pip install pyinstaller

6. 実際にExe を以下の様にして作成する

pyinstaller hello.py --onefile

ソースコードを置いたところの dist フォルダーに Exe が置かれる
image.png

image.png


☆2021年12月12日(日) 午後5時45分 初版(Ver1.00) 作成


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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?