Path: csiph.com!feeder.erje.net!2.eu.feeder.erje.net!newsfeed0.kamp.net!newsfeed.kamp.net!fu-berlin.de!uni-berlin.de!not-for-mail From: Michael Torrie Newsgroups: comp.lang.python Subject: Re: how do I put the python on my desktop or even access it Date: Sun, 17 Jan 2016 08:03:00 -0700 Lines: 22 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de SaO5wqlrdfx5JBAtFaoSCQ7phJiJOSa7Vv6ma17Xhw3g== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.027 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; 'skip:\\ 20': 0.05; 'python': 0.10; 'subject:python': 0.14; 'from:addr:torriem': 0.16; 'from:name:michael torrie': 0.16; 'menu.': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:access': 0.16; 'subject:desktop': 0.16; 'wrote:': 0.16; 'first.': 0.18; 'assuming': 0.22; 'this:': 0.23; 'header:In-Reply-To:1': 0.24; 'header:User-Agent:1': 0.26; 'command-line': 0.29; 'mode.': 0.29; 'environment': 0.29; 'program,': 0.29; "i'm": 0.30; 'run': 0.33; 'idle': 0.33; 'windows.': 0.33; 'message-id:@gmail.com': 0.34; 'editor': 0.34; 'running': 0.34; 'text': 0.35; 'interact': 0.35; 'but': 0.36; 'there': 0.36; 'to:addr:python-list': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'subject:the': 0.39; 'received:192': 0.39; 'to:addr:python.org': 0.40; 'where': 0.40; 'called': 0.40; 'your': 0.60; "you'll": 0.61; 'charset:windows-1252': 0.62; 'programs,': 0.72; 'integrated': 0.72; 'graphical': 0.91 X-Virus-Scanned: amavisd-new at torriefamily.org User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:101853 On 01/16/2016 01:11 PM, zack fitzsimons wrote: > > > > > > > I'm assuming based on your empty email that you must be running Windows. Python is a command-line program. First run cmd.exe and then from there you can run python.exe and interact with it in immediate mode. To create and run python programs, you can use a text editor to make the program, and then, if it's a graphical program, you can double-click it, but if it's a text-mode program you must run it from cmd.exe like this: python \path\to\myprogram.py. There is a graphical integrated development environment that comes with Python called IDLE that you can run from the start menu. I suspect this is where you'll want to go first.