simple tutorials for fastapi
- Python 3.10 or above
- A serial console like
cuon Linux-compatible systems, RealTerm and PuTTY on Windows, etc.
Optional by recommended: Create a virtual environment for the Python code of this project:
python -m venv venv
# or
virtualenv venvTo activate the virtual environment, you need to tell the command line:
# Linux compatible shells
source venv/bin/activate
# Windows shells
# TODOTo install the project dependencies:
# At the root of this repository
pip install -e ".[dev]"At this point you should be good to go.
At every usage, when opening a shell for the Python code, you need to ensure the virtual environment is active (often the prompt is prefixed with venv).