I'm relatively new to using Python on Windows, and the first hurdle for me is that pip is not installed with Python 3.13.1 for Windows. Several tutorials suggest installing with the following script: https://bootstrap.pypa.io/get-pip.py
Call me over-cautious but it seems shady as hell to be told 'just download and run this impenetrable script from a website you've never heard of and it will solve your problem'.
Is this really the legit, accepted way of installing pip on Windows?
EDIT:
Turns out pip was installed and I just needed a reboot. TIL.
python - Where do I find the "get-pip.py" dowload link? - Stack Overflow
python - How do you download PIP? - Stack Overflow
python - Why does "get-pip.py" complain about invalid syntax? - Unix & Linux Stack Exchange
python - pip install failing on python2 - Stack Overflow
The correct get-pip.py file for python2 has been moved to https://bootstrap.pypa.io/pip/2.7/get-pip.py
PIP has dropped support for Python 2.7 in the result you are facing the above issue, so the only thing is to downgrade the version of pip.
only the following command worked for me...
sudo easy_install pip==20.3.4