Fwd: pip is not installed
Cameron Simpson
cs at cskk.id.au
Sun Apr 16 22:11:06 EDT 2023
On 16Apr2023 16:54, Khoinguyen Nguyen <khoinguyenn343 at 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 <cs at cskk.id.au>
More information about the Python-list
mailing list