This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pip not installed with fresh python3.8.10 installation
Type: crash Stage:
Components: Installation Versions: Python 3.8
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: shreyanse081, steve.dower, terry.reedy
Priority: normal Keywords:

Created on 2021-09-20 06:29 by shreyanse081, last changed 2022-04-11 14:59 by admin.

Messages (3)
msg402193 - (view) Author: Shreyans Jain (shreyanse081) Date: 2021-09-20 06:29
I have installed Python 3.8.10 on windows server 2019. 
When I try to run "pip list" or any other pip command, it throws error of "pip not found. unrecognized command". I checked Scripts directory where usually pip resides in the installation, and pip is missing. 
Note: while installing I made sure that pip should be installed along with the python installation.
msg402507 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2021-09-23 16:32
Can you attach the log files stored in your %TEMP% as a zip file? They should all start with "Python".

Be aware that they may contain personal information, such as usernames or machine names. Feel free to scrub those first if necessary.
msg402586 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2021-09-24 20:19
If you installed 'py' (the default), you should be able to install pip with 'py -3.8 -m ensurepip'.  (I had to do this once.  I wrote the failure off as a random glitch and did not think to open an issue.)
History
Date User Action Args
2022-04-11 14:59:50adminsetgithub: 89407
2021-09-24 20:19:50terry.reedysetnosy: + terry.reedy
messages: + msg402586
2021-09-23 16:32:08steve.dowersetnosy: + steve.dower
messages: + msg402507
2021-09-20 06:29:26shreyanse081create