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?

Python Flaskの環境構築

Last updated at Posted at 2024-07-16

PythonのフレームワークFlaskの環境構築について書いていきます。

Flaskのドキュメント
https://flask.palletsprojects.com/en/3.0.x/

Virtual environmentsを選択

コマンドプロンプトで下記を実施していきます。

Create an environment
image.png

mkdir myproject

myprojectというファイルができます。

cd myproject
py -3 -m venv .venv

仮想環境が出来上がりました。

続いて仮想環境の有効化します。
image.png

 .venv\Scripts\activate

続いてFlaskのインストールします。
image.png

pip install Flask

インストールの確認方法は

flask --version

にてインストールが確認できます。

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?