- Python 3.10.0
Make sure you have Python 3.10.0 installed. Download it here.
- Clone the repository
git clone [REPO_URL]
cd [PROJECT_FOLDER]
- Create a virtual environment
Linux/macOS:
bash
python3.10 -m venv venv
Windows:
cmd
py -3.10 -m venv venv
- Activate the virtual environment
Linux/macOS:
bash
source venv/bin/activate
Windows:
cmd
.\venv\Scripts\activate
- Install dependencies
pip install -r requirements.txt
- Usage
Run the main.py
With the virtual environment activated:
python main.py
- Virtual Environment (Reminders)
To exit the virtual environment:
deactivate
- To delete the virtual environment:
Simply remove the venv folder from your project directory.
- Contribution
Ensure you use Python 3.10.0 and the virtual environment.
Install dependencies from requirements.txt.
Verify your Python version with python --version before contributing.