python

Python Installation


Python Installation:

Here's a simple guide to installing Python on different operating systems:

 

For Windows:

Download Python Installer:

Run the Installer:

  • Open the downloaded .exe file.
  • Check the box that system "Add Python to PATH".
  • Click "Install Now".

Verify the Installation:

  • Open Command Prompt.
  • Type python --version and press Enter.
  • You should see the installed Python version displayed.

 

For macOS:

Download Python Installer:

Run the Installer:

  • Open the downloaded .pkg file.
  • Follow the prompts to install Python.

Verify the Installation:

  • Open Terminal.
  • Type python3 --version and press Enter.
  • You should see the installed Python version displayed.

python