[Django]-How to resolve ImportError "No module named pycurl"

5👍

Had the same issue with python3.5 on ubuntu 14.04 when checking pydocusign version:

python -c "import pydocusign;print(pydocusign.__version__)"

The @Michael Vietluzhskih didn’t help, but the command below did:

pip -v install pycurl --upgrade

-1👍

1) Open the cmd.exe

2) Run pip install pycurl

Now it must work

Leave a comment