Steps to install Python locally (On Windows opeating system)
- Go to www.python.org
- Download Python installer from www.python.org
- Open the Python installer that you downloaded
- In the screen that appears, make sure to select "Add Python <version> to PATH".
- Click "Install Now". This will prompt some dialog boxed asking for certain permissions. Please accept them.
- Once the installer finishes installing Python, "Setup was successful" will be displayed at the end of the installation process.
Checking whether Python installer is working
- Open Windows Command Prompt from the Windows Start Menu.
- Type python on the command prompt and press Enter. If Python is successfully installed, this will display the installed Python version and open a Python command prompt where you can type in Python commands.
- You may try out any Python commands in the Python command prompt.
- To exit Python, type exit() and press Enter.