0
3

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 3 years have passed since last update.

Visual Studio CodeでPython開発環境構築

Last updated at Posted at 2020-06-14

Visual Studio CodeでPython開発環境構築

今回の記事でVSCodeを利用してPython開発環境構築について説明します。
手順は以下の通りです。

1、Anacondaインストール

実はAnacondaの中でもpythonコーディングできるツールはたくさん入っていますが
今回はAnacondaをベースとしてVisual Studio Codeでpython開発方法を説明します。

2、Visual Studio Codeでpython開発

2.1、普通のpython開発方法

VSCodeを開く
image.png

ctrl+Nで新規ファイルする
image.png
ctrl+K-> Mでpythonを選択して、pyファイルを作成する
image.png

ctrl+Sでファイルを保存する
image.png
以下の例のようにコードを書き、
メニュー -> 実行 -> デバックなしで実行 を選択して実行する
image.png
Hello Worldが画面にプリントされあればpython実行成功!

2.2、Jupyter+python開発方法

上記のように新規ファイルを作成してctrl+K-> MでJupyterを選択して、ファイルを保存する
image.png
以下の例のようにコードを書き、緑色の実行ボタン 押下する
image.png
Hello Worldが画面にプリントされあればpython実行成功!

0
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?