- A Quick Guide for Installing Python on Common Operating Systems
- Download the latest version of Python 3.12
(Windows)
python -m venv env
(MacOS)
python3 -m venv env
source env/bin/activate
(Windows)
pip install -r requirements.txt
(MacOS)
pip3 install -r requirements.txt
.env file
(Windows)
python main.py
(MacOS)
python3 main.py