I am trying to properly install python and set up virtual environments to make project development easier. Im stuck on how to install pip now. My question is this:
- Do I need to install pip in a specific way if I'm trying to set up virtual environments?
Here's what I've done so far...
- installed pyenv
- used pyenv to install python version 3.7, 3.8 and 3.9
- set global pyenv to be python 3.9
Now I don't know hot to set up pip.
I did this: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
and then: python get-pip.py
..however when I go to verify pip was installed i get 'pip command not found'.
How do I properly set up pip so that I can create virtual environments and install packages for different environments?
Do I need to add pip to my PATH? If so, how do I do that?