Base Python Application to show how to setup an API using fastAPI Library
-
Create the pip environment:
python -m venv venv
-
Activate the pip environment:
source venv/bin/activate -
In case you need to update pip:
pip install --upgrade pip
-
Install the project's core dependencies:
pip install -r requirements.txt
-
Deactivate virtual environment:
deactivate