1

I tried installing pycurl with the .msi installer on Windows. After installing, I tried to import the module pycurl. This is what I got:

Python 3.9.1 (tags/v3.9.1:1e5d33e, Dec  7 2020, 17:08:21) [MSC v.1927 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pycurl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'pycurl'
>>>
user3273814
  • 198
  • 3
  • 16

1 Answers1

1

Try installing pycurl with pip

pip install pycurl

use pip3 if pip doesn't works.