Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #97503

Re: Installation problem

Subject Re: Installation problem
References <1484754132.3702647.1444310741669.JavaMail.zimbra@comcast.net>
From Tim Golden <mail@timgolden.me.uk>
Date 2015-10-08 14:47 +0100
Newsgroups comp.lang.python
Message-ID <mailman.473.1444312057.28679.python-list@python.org> (permalink)

Show all headers | View raw


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

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Installation problem Tim Golden <mail@timgolden.me.uk> - 2015-10-08 14:47 +0100

csiph-web