-
Open the terminal
-
Create a virtual environment
python3 -m venv venv
-
Then activate the virtual environment (MAC)
source venv/bin/activate
-
Install all the dependencies
pip install -r requirements.txt
-
Start the application on port 8001
uvicorn main:app --reload --port 8001