Simulate Python Install in Windows Registry
up vote
0
down vote
favorite
I'm developing a Python 2.7 based application that will be distributed to Windows machines using Pyinstaller. The application uses a third party API.
I can satisfy all the API's dependency requirements. It doesn't need Python 2.7 to be installed on the host machine.
However, the API crashes unless it can find these Windows registry keys that are normally set by the Windows Python 2.7 msi installer:
[HKEY_CURRENT_USERSoftwarePython]
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7]
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7InstallPath]
@="C:\python27"
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7PythonPath]
@="C:\python27;C:\python27\Lib\;C:\python27\DLLs\"
I can make the API crash or run at will by removing or adding the above to the registry.
I tested that setting these keys by hand has no ill effect on either a future installation of Python 2.7 or on Windows Add/Remove programs feature.
I know little about Windows registry. Is there a potential for harm to end users' OS if my application writes these keys on hosts that lack Python 2.7?
windows python-2.7 registry
add a comment |
up vote
0
down vote
favorite
I'm developing a Python 2.7 based application that will be distributed to Windows machines using Pyinstaller. The application uses a third party API.
I can satisfy all the API's dependency requirements. It doesn't need Python 2.7 to be installed on the host machine.
However, the API crashes unless it can find these Windows registry keys that are normally set by the Windows Python 2.7 msi installer:
[HKEY_CURRENT_USERSoftwarePython]
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7]
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7InstallPath]
@="C:\python27"
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7PythonPath]
@="C:\python27;C:\python27\Lib\;C:\python27\DLLs\"
I can make the API crash or run at will by removing or adding the above to the registry.
I tested that setting these keys by hand has no ill effect on either a future installation of Python 2.7 or on Windows Add/Remove programs feature.
I know little about Windows registry. Is there a potential for harm to end users' OS if my application writes these keys on hosts that lack Python 2.7?
windows python-2.7 registry
Sideeffect: pythonclock.org
– Patrick Artner
yesterday
Just out of curiosity: How are you running python code without a python env? And how can you guarantee that all code paths of the 3rd party API is statisfied by your code?
– Patrick Artner
yesterday
The code is frozen and self contained in a Pyinstaller .exe build. It doesn't require Python on the host. I can not guarantee anything regarding this poorly documented API. It's been all trial-and-error making it work.
– I_Ridanovic
yesterday
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm developing a Python 2.7 based application that will be distributed to Windows machines using Pyinstaller. The application uses a third party API.
I can satisfy all the API's dependency requirements. It doesn't need Python 2.7 to be installed on the host machine.
However, the API crashes unless it can find these Windows registry keys that are normally set by the Windows Python 2.7 msi installer:
[HKEY_CURRENT_USERSoftwarePython]
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7]
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7InstallPath]
@="C:\python27"
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7PythonPath]
@="C:\python27;C:\python27\Lib\;C:\python27\DLLs\"
I can make the API crash or run at will by removing or adding the above to the registry.
I tested that setting these keys by hand has no ill effect on either a future installation of Python 2.7 or on Windows Add/Remove programs feature.
I know little about Windows registry. Is there a potential for harm to end users' OS if my application writes these keys on hosts that lack Python 2.7?
windows python-2.7 registry
I'm developing a Python 2.7 based application that will be distributed to Windows machines using Pyinstaller. The application uses a third party API.
I can satisfy all the API's dependency requirements. It doesn't need Python 2.7 to be installed on the host machine.
However, the API crashes unless it can find these Windows registry keys that are normally set by the Windows Python 2.7 msi installer:
[HKEY_CURRENT_USERSoftwarePython]
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7]
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7InstallPath]
@="C:\python27"
[HKEY_CURRENT_USERSoftwarePythonPythoncore2.7PythonPath]
@="C:\python27;C:\python27\Lib\;C:\python27\DLLs\"
I can make the API crash or run at will by removing or adding the above to the registry.
I tested that setting these keys by hand has no ill effect on either a future installation of Python 2.7 or on Windows Add/Remove programs feature.
I know little about Windows registry. Is there a potential for harm to end users' OS if my application writes these keys on hosts that lack Python 2.7?
windows python-2.7 registry
windows python-2.7 registry
asked yesterday
I_Ridanovic
6418
6418
Sideeffect: pythonclock.org
– Patrick Artner
yesterday
Just out of curiosity: How are you running python code without a python env? And how can you guarantee that all code paths of the 3rd party API is statisfied by your code?
– Patrick Artner
yesterday
The code is frozen and self contained in a Pyinstaller .exe build. It doesn't require Python on the host. I can not guarantee anything regarding this poorly documented API. It's been all trial-and-error making it work.
– I_Ridanovic
yesterday
add a comment |
Sideeffect: pythonclock.org
– Patrick Artner
yesterday
Just out of curiosity: How are you running python code without a python env? And how can you guarantee that all code paths of the 3rd party API is statisfied by your code?
– Patrick Artner
yesterday
The code is frozen and self contained in a Pyinstaller .exe build. It doesn't require Python on the host. I can not guarantee anything regarding this poorly documented API. It's been all trial-and-error making it work.
– I_Ridanovic
yesterday
Sideeffect: pythonclock.org
– Patrick Artner
yesterday
Sideeffect: pythonclock.org
– Patrick Artner
yesterday
Just out of curiosity: How are you running python code without a python env? And how can you guarantee that all code paths of the 3rd party API is statisfied by your code?
– Patrick Artner
yesterday
Just out of curiosity: How are you running python code without a python env? And how can you guarantee that all code paths of the 3rd party API is statisfied by your code?
– Patrick Artner
yesterday
The code is frozen and self contained in a Pyinstaller .exe build. It doesn't require Python on the host. I can not guarantee anything regarding this poorly documented API. It's been all trial-and-error making it work.
– I_Ridanovic
yesterday
The code is frozen and self contained in a Pyinstaller .exe build. It doesn't require Python on the host. I can not guarantee anything regarding this poorly documented API. It's been all trial-and-error making it work.
– I_Ridanovic
yesterday
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53343706%2fsimulate-python-install-in-windows-registry%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Sideeffect: pythonclock.org
– Patrick Artner
yesterday
Just out of curiosity: How are you running python code without a python env? And how can you guarantee that all code paths of the 3rd party API is statisfied by your code?
– Patrick Artner
yesterday
The code is frozen and self contained in a Pyinstaller .exe build. It doesn't require Python on the host. I can not guarantee anything regarding this poorly documented API. It's been all trial-and-error making it work.
– I_Ridanovic
yesterday