-
Create a new virtual environment:
- Open a terminal in VSCode.
- Run the following command to create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
- For Windows:
.\venv\Scripts\activate
- For macOS/Linux:
source venv/bin/activate
- For Windows:
-
Install required dependencies:
- Once the virtual environment is activated, install the required packages using:
pip install -r requirements.txt
- Once the virtual environment is activated, install the required packages using:
-
Make a new Mysql Database: Make a new database called "eclass"
-
Run the app:
python main.py
Access the api on localhost:8000/docs)