Follow these steps to clone the repository and set up the solved python exercises on your local computer.
Ensure you have the following installed on your system:
- Python (Recommended version: 3.12 or above)
- Git
To clone the repository, open your terminal and run the following command:
git clone https://github.com/EjahDil/python_intro_exercises.gitUse the command below to navigate into the repository folder:
cd python_intro_exercisesCreate and activate a virtual environment using the command below to manage project dependencies:
For Linux
python3 -m venv venv
source venv/bin/activate