我从http://www.lfd.uci.edu/~gohlke/pythonlibs/#pycurlpycurl
提供的二进制文件中安装了带有 Python 2.7 的 Windows 7 64 位机器
但是,我收到以下错误
>>> import pycurl
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed: The specified procedure could not be found.
如果我跑pip install pycurl
,我会得到
Requirement already satisfied (use --upgrade to upgrade): pycurl in c:\python27\lib\site-packages
Cleaning up...
所以我相信它已正确安装,但我是否缺少 DLL 文件?
请指教。