Fast Api : Python Backend Framework
mkdir fastapi-backend
cd fastapi-backend
Create virtual environment (THIS IS IMPORTANT)
python3 -m venv venv
Activate it:
source venv/bin/activate
You should see:
(venv) wajahat@ubuntu:...
Install FastAPI + Uvicorn
pip install fastapi uvicorn
C...
fast-api-blog.hashnode.dev3 min read