Skip to content Skip to sidebar Skip to footer

How To Install Python 3.2.3 On Windows 7 Enterprise

although I have been using python a long time very easily in a Linux environment, I have tremendous trouble to even install it correctly in a windows environment. I hope this is a

Solution 1:

1) Look here: www.computerhope.com/issues/ch000549.htm

2) It has already been answered, always try to use search before asking question: pythonw.exe or python.exe?

4) When using cmd.exe just navigate to your script folder using dir for changing directories and C:,D:,etc. for changing drives. Then run script by typing just the script name. When installed correctly, Python automatically launches .py scripts with python, so you don't have to write 'python' before script name. When run in cmd, window will stay open. If you want it to stay open even when launching script with double-click, use function waiting for user input, see here How to keep a Python script output window open?

Solution 2:

You might want to use Python3.3, there is a new launcher for Python scripts in it. By that, you can start Python scripts with py <scriptname> which has the benefit of being installed in your path (C:\Windows\system32) and you can use a shebang to tell whether the script is for Python2 or Python3. Also

In addition to the launcher, the Windows installer now includes an option to add the newly installed Python to the system PATH (contributed by Brian Curtin in issue 3561).

Post a Comment for "How To Install Python 3.2.3 On Windows 7 Enterprise"