01-04: Environment Setup¶
Install Python 3¶
Option 1: Manual¶
Step 1: Go to official Python website: https://www.python.org/downloads/
Step 2: Download the latest version of Python

👉 Download: - Python 3.x.x (recommended)
Or,
- Python Install Manager (optional)
Step 3: Install Python
IMPORTANT: ✔ Check "Add Python to PATH" before clicking Install
Option 2: In PowerShell (Windows) / Terminal¶
Step 1: Search available Python versions
Step 2: Install using exact version from search result
✅ Verify Installation (in PowerShell/Terminal)¶
If not working:
📚 Install Libraries (in PowerShell/Terminal)¶
General command:
Examples:
pip install numpy # numerical computing
pip install pandas # data analysis and handling
pip install matplotlib # data visualization
Optional (for Reinforcement Learning):
💻 Install VS Code¶
Step 1: Download: https://code.visualstudio.com/
Step 2: Install
During installation:
✔ Add to PATH
✔ Add "Open with Code"
🔌 Install Python Extension in VS Code¶
Open VS Code → Extensions → Search: Python
Install: Python (by Microsoft)
NOTE: Python extension does NOT install Python
⬅️ Previous: 01-03: Python Platforms and IDEs ➡️ Next: 01-05: Writing and Executing Python Code in VS Code