Trouble With Python3 And Pip
I'm on Linux Mint 18.3 Sylvia. I have an issue with pip and python3, and no other issues helped me actually. dsds Everything work when I do python -m pip --version pip 8.1.1 from /
Solution 1:
Here's what I would try.
$ wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py
That should run the latest get-pip and install it in your python3 installation. As mentioned in my comment on your question, it looks like the version of pip that is installed is incompatible with your version of Python (it's running 3.6+ code in 3.5) so maybe installing fresh will make life better.
Solution 2:
You must at first remove all pip* files :
sudo rm -rf /usr/local/lib/python3.x/dist-packages/pip*
Then reinstall pip :
sudo apt install python3.x-pip
Solution 3:
When you are writing "python" on command windows Which version it shows ? Having python 2 and 3 simoltaneously should not make problem for you But sometimes it is conflicting because of environmental variable or path.
Post a Comment for "Trouble With Python3 And Pip"