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?

【Windows】Pythonがとりあえず動けばいい人向けの環境構築

Posted at

Pythonをダウンロードする

・自分の使っているユーザー名がすべてローマ字であることを確認する

https://www.python.org/downloads/windows/ 
上記のサイトに飛んで
image.png
Stable Releasesの3.10以上のWindows installerをダウンロードする
64bitか32bitは各自のPCのCPUを確認してください

image.png
インストーラーを起動したら上記のような画面が出る
赤のまるで囲った部分にチェックを入れ、そのまま指示に従ってインストールを進める

VScodeのインストールは上記を参照

image.png
インストールが終わったらVScodeを起動してPython用の拡張機能をインストールする

拡張機能のインストールは上記を参照

VScodeでファイル→新しいファイルを選択して"test.py"を作成する
image.png
右下にPythonのバージョンが表示されずによくわからないマークが出ている場合はそこをクリックしてインストールしたPythonのバージョンを選択する。

print("Hello World!")

をtest.pyに入力して、右上の実行ボタンまたはCtrl + Alt + Nを押す。
image.png

実行される

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?