So I have a program I'm converting from python 2.7 to python 3.3. Everything works perfectly in 2.7, but in 3.3 I keep getting:
ImportError: No module named 'httplib2'
Now, I have httplib2 installed, and like I said, it works in python 2.7. The 2.7 version of the program and the 3.3 version are in the same directory, so I wouldn't think that would affect it. Anyone know what the issue is here?
The only relevant code snippets are:
import httplib2
from httplib2 import FileCache
setuptoolsin Python3 I would trypython3 install setup.py