Firstly you need to clone the project
$ git clone <project>
$ cd <project>
Create and activate a virtual environment
$ python -m venv <name>
$ <name>/scripts/activate # windows powershell
$ <name>/bin/activate.bat # linux terminal
Install dependencies using the pip
command
$ pip install -r requirements.txt
Start your local server
$ uvicorn main:app --reload