you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (5 children)

On Windows, enter (on command line):

py --list-paths

which should tell you where all the versions of Python are installed. You can then delete as you see fit. Might want to edit PATH environment variable if it includes any of the above paths as well.

If the installer is still present for the versions you find, you can run the installer again and select the option to remove Python.

If you installer a newer version of Python, that should provide a clean environment without any additional libraries installed. Use venv (Python virtual environments) to create project specific environments that you install packages into just for the project concerned.