Skip to content Skip to sidebar Skip to footer

Error "no Module Named Six" After A Pip Install

Python keeps saying that there's no module named six, however a already used pip install six and reinstalled it several times. Traceback (most recent call last): File '/Users/sebas

Solution 1:

I just fixed my own instance of this problem. I had two versions of python; the default, 2.6 (which you determine with which python), and 2.7. pip put six under 2.7, but my app ran 2.6, which had only the tar file.

The repair that worked for me:

cd /usr/lib/python2.6/site-packages
sudo cp -rp ../../python2.7/site-packages/six* .

My app works as expected now.

Post a Comment for "Error "no Module Named Six" After A Pip Install"