I'm using Ubuntu 10.04 and had python 2.6 before. pycurl worked fine.
after I updated my python to 2.7, pycurl doesn't import
>>> import pycurl
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named pycurl
I tried to re-install python using
sudo apt-get install python-pycurl
It told me pycurl was already in the newest version
How do I fix it?
Thanks