in VScode, I cannot install neither linter nor autopep8 formatter, I keep getting the same error message saying that there's no pip for the environment
I have Python v. 3.8.5 and set the path correctly in VScode settings (/usr/local/bin/python3.8) I have selected Python v. 3.8.5 as my interpreter
The issue might be this:
I have tried several times to install pip like this
apt-get install python3-pip
When I check for pip -V it says
pip 20.2.3 from /home/thomas/.local/lib/python2.7/site-packages/pip (python 2.7)
This message displays even after trying to install the aforementioned pip for python3. So it seems my pip still relates to some old Python v. 2.7, how do I fix this?
My system is Ubuntu 16.04 LS
NB:
If I change my interpreter to Python 3.5, then i can format correctly with autopep8 but this old version does not support formatted strings so I'd much rather have everything working in interpreter 3.8.5