Python Forum
Where does pip auto install on Win10 with py 3.9.4?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Where does pip auto install on Win10 with py 3.9.4?
#4
OK. Here is how I solved the mystery and...
found out how to use pip in Windows 10 after Installing Python 3.8.4...

Note: "pip comes automatically when you install python 3.8.4 so you do not need to download and install pip separately."

Answer:
Don't enter "pip" at the command line to launch pip...
> pip

Instead use python to engage pip and install a python package...
like this example to install the CamelCase package
> python -m pip install camelcase

After which the package will be installed...
BUT you may get a Warning that you are using an older version of pip...
To fix this run this command...
> python.exe -m pip install --upgrade pip

Of course you must have your Windows 10 enviroment variable and path set properly or python wont run...
Here is a link showing you how to do that...
How to add Python Path to Environment Variables in Windows 10

That's it.

Maybe there is another way but this seemed to work for me.
Reply


Messages In This Thread
RE: Where does pip auto install on Win10 with py 3.9.4? - by Fran_3 - May-05-2021, 03:34 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Compiling on win10 ebolisa 1 1,781 Sep-04-2020, 04:39 PM
Last Post: ebolisa
  Error building wheel for grpcio on win10 Topiii 1 5,263 Nov-13-2019, 03:08 PM
Last Post: snippsat
  Development Server Problem (Win10) SMY1 0 1,972 Apr-26-2019, 06:25 PM
Last Post: SMY1
  win10 Service(script) start and stop hwa_rang098tkd 0 2,486 Jun-21-2018, 07:42 PM
Last Post: hwa_rang098tkd
  Win10 Import math issue Oldsquid 2 3,102 May-12-2018, 11:08 AM
Last Post: Oldsquid
  Load spatialite in Python 3.6 on Win10 failed RTFirefly 1 5,432 Feb-19-2018, 09:59 PM
Last Post: RTFirefly
  Can't get .py to run on Win10 command line jonesin1974 3 4,704 Nov-08-2017, 04:25 AM
Last Post: jonesin1974

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020