Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Python Installation and steps to execute in windows

4.80/5 (4 votes)
5 Oct 2014CPOL 13.5K  
Steps for Python Installation

Introduction

Python is a very powerful and flexible opensource programming language Designed by “Guido van Rossum” and developed by “Python Software” Foundation.Python allows developers to accomplish their objective with minimal lines of codes possible in comparison with any other programming languages.

Python Installation Steps

  • Go to https://www.python.org/
  • Download Latest Version of Python which is

    Python 3.4.1 as on 10/5/2014

  • Initiate installation steps using the set-up

    Image 1

    Image 2

    Image 3

    Image 4

    Image 5

    Image 6

  • Now, Once all installation processes are over Navigate to installed location using FileExplorer

    Image 7

  • Type a basic Python Code and Save the file with .py extension

    Eg:

    Python
    #!/usr/bin/python
    print ("Hello, Python!");
  • Save as first.py within “Python34 “ folder

    Now Open Python34 folder

    Hold “shift” key and right click to select “open command window here”

    Image 8

  • Type “first.py” (your script name) in Command window to execute the python script

    Image 9

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)