Search code examples
pythonpython-3.xpippycurl

Pycurl is not recognized by PyCharm after pip install


I tried to install pycurl in my virtual environment so I ran the following command:

pip install -U pycurl

Yet after the install, Pycharm was still warning me that pycurl was not recognized.

When I look in my site-package folder I do have a pycurl-7.43.0.1.dist-info folder but no pycurl folder

Could you help me to get a clean install for pycurl?


Solution

  • One way to solve it is to do the following in PyCharm:

    • Go to Settings (Ctrl + Alt + S)
    • Go to Project Interpreter
    • Click on the + button on the right of the panel
    • Find pycurl
    • Click on Install Package

    The warning should disappear after that.