I am trying to install latest version of six python package but I have following issues. Can't get rid of six 1.4.1 in mac OSX 10.10.2
sudo pip install six --upgrade
Requirement already up-to-date: six in /Library/Python/2.7/site-packages
Cleaning up...
pip search six
six - Python 2 and 3 compatibility utilities
INSTALLED: 1.9.0 (latest)
python -c "import six; print six.version"
1.4.1
which -a python
/usr/bin/python
which -a pip
/usr/local/bin/pip
What is wrong here? Can't upgrade six!
pip uninstall six
. Then do an install. – Housetoppython
andpip
do not belong to the same interpreter. Trypython -m pip install --upgrade six
instead. If this does not help consider adding the output ofwhich -a python
andwhich -a pip
to your question. – Foliation