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 -- https://mail.python.org/mailman/listinfo/python-list