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?

Flaskの環境構築から、Hello World出力まで【備忘録】

Posted at

環境

  • Windows
  • Python 3.12.4
  • Flask 3.0.3

ディレクトリ構成

flask_test/
  ├─ venv/
  └─ app.py

手順1 flaskインストールまで

※Pythonはインストール済みとする

仮想環境用ディレクトリ test_project を作成
作成したディレクトリに移動

mkdir test_project
cd test_project

仮想環境を作成( py -3 -m venv [フォルダ名]

py -3 -m venv venv

仮想環境を有効化( [フォルダ名]\Scripts\activate

venv\Scripts\activate

→ 先頭に (env) が付く

無効化するときは deactivate と入力

仮想環境の中にFlaskをインストール

pip install Flask

手順2 "Hello World"出力まで

(任意)ワークスペース作成

vscode上で 名前を付けてワークスペースを保存 を選択
複数のフォルダを同時に開くことが可能
→フロントとバックを同時に見れる

スクリプト作成

test_project フォルダの中に app.py を作成

app.py
from flask import Flask
app = Flask(__name__)

@app.route("/")
def hello_world():
    return "Hello World!"

if __name__ == "__main__":
    app.run(debug=True)

実行する(cmd)

flask run --debugger --reload

--debugger --reload を付けないと、修正が直後に反映されない

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?