Final Project for Professional Elective 3
-
Create Virtual Environment:
python3 -m venv myenv
Replace
myenv
with the name you want to give your virtual environment. -
Activate Virtual Environment:
- On Windows:
myenv\Scripts\activate
- On macOS and Linux:
source myenv/bin/activate
- On Windows:
-
Install Dependencies:
pip install -r requirements.txt
This command installs all the dependencies listed in your
requirements.txt
file into the virtual environment. -
Run the App:
python main.py