On 16Apr2023 16:54, Khoinguyen Nguyen <khoinguyenn...@gmail.com> wrote:
I have tried to reinstall, repair, and run in command prompt, but it seems
as though pip won't install. I am using Windows 10 and Python 3.11.3. Are
there any other suggestions for troubleshooting?

Have you tried invoking pip _via_ Python? This is actually the recommended approach because it uses the pip for that specific Python. Example:

    py -m pip install foo

This invokes the "pip" module for thePython invoked by "py" (which I believe is how Python is normally invoked from a Windows command line), to install some package "foo".

Cheers,
Cameron Simpson <c...@cskk.id.au>
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to