This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author steve.dower
Recipients eryksun, ncoghlan, steve.dower, terry.reedy
Date 2015-03-11.20:41:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426106517.24.0.694296731665.issue23633@psf.upfronthosting.co.za>
In-reply-to
Content
For a per-user install, the launcher does not go in C:\Windows (note that Python 3.4 does not really have per-users installs). The correct location for the ini file in every case is alongside the executable, and it must always be named "py.ini".

py.exe is put into C:\Windows because that directory will always be on PATH and has no 32-bit/64-bit redirection. The next best location would be a subdirectory of %CommonProgramFiles% and %CommonProgramFiles(x86)% and we'd probably need to install it twice.

The access denied message you got was because %LocalAppData% is a directory. Try doing:

> notepad %localappdata%\test.txt
History
Date User Action Args
2015-03-11 20:41:57steve.dowersetrecipients: + steve.dower, terry.reedy, ncoghlan, eryksun
2015-03-11 20:41:57steve.dowersetmessageid: <1426106517.24.0.694296731665.issue23633@psf.upfronthosting.co.za>
2015-03-11 20:41:57steve.dowerlinkissue23633 messages
2015-03-11 20:41:57steve.dowercreate