I'm on Linux Mint and have at least 3 versions of python (2, 3.4, 3.5).
Trying to use pip3.5
, I get:
Import Error: No module named six
But, trying to install six via any of the following give the same error:
sudo easy_install-3.5 six
sudo python3.5 -m easy_install six
sudo pip3.5 install six
It feels like this is circular reasoning since I can't use pip or easy_install since I don't have six, but I can't install six since pip or easy_install won't work without it.