Can anyone please tell me an IDE for running python programs? Is it possible to run the program through command line?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Take a look at ActiveState’s ActivePython. It’s quite a nice implementation of Python on Windows. Another way is using Cygwin’s Python port. These two are Python implementations. I don’t use an IDE, I write my Python code in Notepad++.
To run a python program after saving it to
C:\Users\vaibhav\Code\myscript.py:ActivePython: If I remember right, ActiveState updates the path correctly. So it should be a s simple as:
dir Users\vaibhav\Codepython myscript.pyand you’re doneCygwin: After installing Cygwin, you have a full-featured bash terminal on your Windows machine.
cd /cygdrive/c/Users/vaibhav/Codepython myscript.py