0
0

More than 1 year has passed since last update.

FastAPIのチュートリアルの環境構築

Last updated at Posted at 2021-09-28

こちら
https://fastapi.tiangolo.com/ja/

1番最初のinstallをしようとしたところpipが入ってないと怒られたので、まずはpipをインストールした

$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ python get-pip.py
$ pip -V
pip 21.2.4 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)

これで完了した。

次の方をインストールしようとしたらまた怒られたので必要なものインストールする。

$ pip install uvicorn[standard]
zsh: no matches found: uvicorn[standard]

$ pip install uvicorn

これで問題なく進められるようになった。

ひとまず最低限の動作確認ができた

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