I have an issue, when using Visual Studio Code, and when I'm choosing the interpreter of Python to use within a code, I realize there are two different installations or Python 3, besides the two Python2 installations.
- Python 3.7.3 on /usr/bin/python3
- Python 3.8.2 on /usr/local/bin/python3
- Python 2.7.16 on /usr/bin/python (I guess this is the Apple version)
- Python 2.7.17 on /usr/local/bin/python
The problem comes when I'm trying to use the 'Extract Method' on the 3.8.2 and it tells me to update pip. How do I choose the installation to update pip?
When I run "sudo pip install --upgrade pip" it only goes to the python 2 apple version. But I can't update the pip on the other installations.
Thanks in advance.