- Download Git from https://git-scm.com/download/win.
- Run the installer (keep the default settings).
- Verify installation:
✅ You should see
git --version
git version 2.x.x
.
- Download Python from https://www.python.org/downloads/.
- Check the box for "Add Python to PATH" before installing.
- Verify installation:
✅ It should print Python 3.11.x.
python --version
- Ensure pip is installed:
python -m ensurepip --default-pip
- Upgrade pip:
python -m pip install --upgrade pip
- Check the pip version:
✅ If you see
pip --version
pip 23.x.x
, pip is working fine!
Note: You can run these commands in either Command Prompt (cmd) or PowerShell.
Now that you have Git and Python 3.11 installed, you can start writing scripts and automating tasks!
Example: To install the requests
package, run:
pip install requests
Let me know if you need help! 🚀