I'm trying to install pip (which was already giving my trouble), and am doing the following:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
Which seems to work as intended, but then when I attempt to run the next step of
py get-pip.py
I'm told Python was not found
Yet, if I run
py --version
It returns to me the current version of python that is installed.
I've installed python and pip before but I've never run into this issue. I'm assuming theres some small factor or syntax mistake I may be making that I'm not accounting for. Also, I am running this in a Windows 10 VM, and don't know if that would change anything.