Installing Python - Windows
Step 1: Download Python
1. Visit the Official Python Website: Open your web browser and go to the official Python website.
2. Select the Version: Click on the 'Downloads' tab. The website typically suggests the latest version for Windows.
3. Download the Installer: Click on the link to download the Python installer for Windows.
Step 2: Run the Installer
1. Locate the Installer: After the download is complete, locate the installer file, usually in your 'Downloads' folder.
2. Start Installation: Double-click the installer file to begin the installation process.
3. Select Installation Options:
- Check 'Add Python to PATH': Before proceeding, make sure to tick the checkbox that says “Add Python to PATH”. This step is crucial as it allows you to run Python from the Command Prompt.
- Choose Install Location: You can select the default location (recommended) or choose a specific location for Python installation.
4. Begin Installation: Click on “Install Now” (recommended) or “Customize Installation” if you need to change any settings.
Step 3: Verify the Installation
1. Open Command Prompt: After the installation is complete, open the Command Prompt.
2. Check Python Version: Type python --version
and press Enter. This command should return the version of Python you installed.
3. Verify Pip Installation: Type pip --version
to ensure that pip (Python's package installer) is also installed.