Path: csiph.com!au2pb.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!nzpost1.xs4all.net!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.028 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.00; 'sys': 0.05; '"python"': 0.09; 'python': 0.10; '(windows': 0.16; 'from:addr:timgolden.me.uk': 0.16; 'from:name:tim golden': 0.16; 'message-id:@timgolden.me.uk': 0.16; 'received:74.55.86': 0.16; 'received:74.55.86.74': 0.16; 'received:smtp.webfaction.com': 0.16; 'received:webfaction.com': 0.16; 'subject:Installation': 0.16; 'tjg': 0.16; 'wrote:': 0.16; 'directory.': 0.18; 'cc:2**0': 0.20; 'subject:problem': 0.22; "user's": 0.22; 'trying': 0.22; 'cc:no real name:2**0': 0.22; 'select': 0.23; 'installation': 0.23; 'this:': 0.23; 'import': 0.24; 'header:In-Reply-To:1': 0.24; 'install': 0.25; 'header:User-Agent:1': 0.26; 'forgive': 0.27; 'run': 0.33; 'michael': 0.33; 'received:192.168.100': 0.33; 'case,': 0.34; 'step': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'skip:p 20': 0.38; 'received:192': 0.39; 'to:addr:python.org': 0.40; 'hello,': 0.40; 'default': 0.61; 'charset:windows-1252': 0.62; 'complete': 0.63; 'laptop': 0.67; 'from:addr:mail': 0.70; 'feeling': 0.72; 'skip:n 40': 0.72; 'click': 0.76; '(ie': 0.84; 'cc:addr:comcast.net': 0.84; 'mike,': 0.84; 'ok?': 0.84; 'window,': 0.84 Subject: Re: Installation problem To: python-list@python.org References: <1484754132.3702647.1444310741669.JavaMail.zimbra@comcast.net> Cc: w4wyi@comcast.net From: Tim Golden Date: Thu, 8 Oct 2015 14:47:34 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1 MIME-Version: 1.0 In-Reply-To: <1484754132.3702647.1444310741669.JavaMail.zimbra@comcast.net> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit 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: , Newsgroups: comp.lang.python Message-ID: Lines: 29 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1444312057 news.xs4all.nl 23759 [2001:888:2000:d::a6]:51833 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:97503 On 08/10/2015 14:25, MICHAEL wrote: > Hello, > > Please forgive a new user's ignorance. > > I am trying to install Python 3.5.0 on my laptop (Windows 10). The > default installation directory is shown as c:\Users\(my user > name)\AppData\Local\Programs\Python\Python35-32. However, if I select > Custom Install then the default installation directory is c:\Program > Files(x86)\Python3.5. > > In either case, after the installation is complete I cannot find a > Python3.5 directory under Program Files(x86) or the Users\... directory. Mike, What happens if you do [Windows] + R (ie Start > Run), enter "python" and click OK? If it comes up with a Python window, what happens if you type this: import sys print(sys.executable) You can do all this in one step if you're feeling adventurous: Start > Run > python -i -c "import sys; print(sys.executable)" TJG