Re: [python-win32] Uninstallation Command Required

2023-09-20 Thread Steven Manross
As well, you can look in the windows registry in the Uninstall key (but need to find the specific key for your python installer) # this registry key is for version 3.9.12 (but the only thing that would change on other versions would be the final key name: the GUID)

Re: [python-win32] Uninstallation Command Required

2023-09-20 Thread Bob Kline
Depends on how it was installed. If you used the installer from python.org, it might look like this: python-3.11.1-amd64.exe /uninstall /quiet > uninstall.log (Adjust the name of the executable to match the version you installed.) If you used some other distribution (for example, from

[python-win32] Uninstallation Command Required

2023-09-20 Thread Sujith R
Hi Team, I need to uninstall python via windows command prompt. I tried lots of various commands but it’s not worked well. Can you please help me to solve this issue. SUMMARY: Need a proper uninstall command for windows Thanks in advance. ___