I\'m having trouble getting pycurl installed on my windows computer. At first I tried pip, but ran into the “Please specify --curl-dir=/path/to/built/libcurl” error, and hav
Try to download sources and build it by yourself: as result you will have to get directories like:
(or you can search for prebuilt binaries/headers with same directory structure) And then you have to point your setup.py script this directory, such as:
python setup.py install --curl-dir="D:\..\libcurl-vc12-x86-release-dll-ipv6-sspi-winssl
And it will be built successfully.