(python2 / python3) Unconventional default installation directory #1819
-
Currently the default installation directory of python2 (installer script) and python3 (installer script) is unconventional. They are installed directly under the system drive, e.g. as I would expect it to be installed by default under the conventional Or is there are reason why users specifically want Python installed under the system drive (see comments on #106)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The location used is due to historical reasons, no other reason. There was a time that the installer installed to those directories by default, and to keep the package backwards compatible with that and because that was the convention in the beginning it was decided to continue using these directories instead of relying on the default location the installer now uses. This is also why the package includes the package parameter |
Beta Was this translation helpful? Give feedback.
The location used is due to historical reasons, no other reason.
There was a time that the installer installed to those directories by default, and to keep the package backwards compatible with that and because that was the convention in the beginning it was decided to continue using these directories instead of relying on the default location the installer now uses.
This is also why the package includes the package parameter
/InstallDir:
that can be used to specify the location if you want to use program files instead (it can not be used on thepython
package though, and only on thepython3
andpython2
packages).