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?










share|improve this question






















  • 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















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?










share|improve this question






















  • 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













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?










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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


















  • 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

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















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






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














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





















































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







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]