Welcome to the course! This repository has all the coding assignments that you'll be completing each week. These assignments are meant to go quickly, with each one taking between 5-10 minutes. Try to do them yourself for a few minutes, then enlist the help of AI to figure it out faster.
- Python 3.8 or higher installed on your computer
- pip (Python package installer) - comes with Python by default
- A code editor (preferably Cursor)
-
Clone this repository
git clone [repository-url] cd curriculum_ai_advocate
-
Create and activate a virtual environment (recommended)
Run the following at the this repository's root directory:
# On macOS/Linux python3 -m venv .venv source .venv/bin/activate # On Windows python -m venv .venv .\.venv\Scripts\activate
-
Install required packages
pip install -r requirements.txt
-
Verify installation
python --version # Should show Python 3.8 or higher pip list # Should show all installed packages
To run any Python script in this course:
python path/to/script.py
If you encounter any issues:
- Make sure your virtual environment is activated
- Verify all requirements are installed
- Check that you're in the correct directory
- Ensure you have the correct Python version