Python system wide install #24389
Answered
by
OfficialEsco
Josh65-2201
asked this question in
Q&A
-
Currently there doesn't seem to be a way of installing python 3 in a system wide environment. How if its already a thing can I do it. |
Beta Was this translation helpful? Give feedback.
Answered by
OfficialEsco
Aug 10, 2021
Replies: 1 comment 1 reply
-
There is currently not a switch for it in the manifest, if someone gets to it before me here is the InstallerSwitches https://docs.python.org/3/using/windows.html You can do For the one adding the metadata, we need |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Josh65-2201
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is currently not a switch for it in the manifest, if someone gets to it before me here is the InstallerSwitches https://docs.python.org/3/using/windows.html
You can do
--override "/quiet PrependPath=1 InstallAllUsers=1
, later you can dowinget install python3 --scope machine
For the one adding the metadata, we need
Custom: InstallAllUsers=1
andInstallLocation: TargetDir=<INSTALLPATH>