我在使用pygrib
安装pip
时遇到问题。我尝试使用pygrib
安装easy_install
,但我收到了类似的错误。
使用pip
我收到此错误:
Command "C:\Users\Brandon\AppData\Local\Enthought\Canopy\edm\envs\User\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\Brandon\\AppData\\Local\\Temp\\pip-build-veulay9n\\pygrib\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\Brandon\AppData\Local\Temp\pip-ff_s5247-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\Brandon\AppData\Local\Temp\pip-build-veulay9n\pygrib\
使用easy_install
我收到此错误:
c:\users\brandon\appdata\local\enthought\canopy\edm\envs\user\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
pygrib.c(242): fatal error C1083: Cannot open include file: 'grib_api.h': No such file or directory
error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\x86_amd64\\cl.exe' failed with exit status 2
事实上,pygrib
是唯一一个在我尝试pip
或easy_install
时无效的软件包 - 它适用于我尝试安装的任何软件包。这里发生了什么,我该如何解决这个问题?
答案 0 :(得分:2)
pygrib
是libgrib-api
的Python包装器。要编译pygrib
,您需要编译libgrib-abi
并安装库和头文件。从https://software.ecmwf.int/wiki/display/GRIB/Releases下载来源。
答案 1 :(得分:0)
pygrib
包含一个或多个用C编写的Python扩展模块,需要在安装过程中进行编译,这个C代码依赖于一些提供名为“grib_api.h
”的头文件的库。 。找到并安装该C库,然后pygrib
安装就可以了。