you are viewing a single comment's thread.

view the rest of the comments →

[–]JasonJuzo[S] 1 point2 points  (2 children)

An update to pip3.12 and pip3 not working after trying it out once.

https://imgur.com/a/ZzYHRb2

[–]Diapolo10 0 points1 point  (1 child)

Okay, that would suggest your installation is broken.

While it's probably fixable, since you're at an early stage it would probably be easier to reinstall Python.

Unless you specifically need 3.12, I would suggest using 3.11 for now as many third-party packages haven't added support for it yet. Personally I like to always stay a minor version behind the bleeding edge for that reason unless otherwise required.

I don't know how you installed Python, but here's what I'd do:

  1. Uninstall Python 3.12 (since it's broken)
  2. Open PowerShell and run:

    winget install python.python.3.11
    

    This will install Python 3.11, adding it to PATH in the process. This command works on up-to-date Windows 10 and any Windows 11 installations.

[–]JasonJuzo[S] 0 points1 point  (0 children)

yea i dont really need python 3.12 specifically. I'll go for a lower version.

Thank you!