使用mac os和macport上的pip安装cartopy

时间:2015-02-03 20:17:06

标签: python macos gis cartopy

我正在尝试在OS X 10.10(Yosemite)上安装cartopy。我的python是使用macports安装的,当我运行时:

sudo pip install cartopy

我收到以下错误:

/usr/bin/clang -Wno-unused-result -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -pipe -Os -I/opt/local/Library/Frameworks/Python.framework/Versions/3.4/include -I./lib/cartopy -I/opt/local/Library/Frameworks/Python.framework/Versions/3.4/include/python3.4m -c lib/cartopy/trace.cpp -o build/temp.macosx-10.10-x86_64-3.4/lib/cartopy/trace.o

lib/cartopy/trace.cpp:236:10: fatal error: 'geos_c.h' file not found

#include "geos_c.h"

         ^

1 error generated.

error: command '/usr/bin/clang' failed with exit status 1

----------------------------------------
Command "/opt/local/Library/Frameworks/Python.framework/Versions/3.4/bin/python3.4 -c "import setuptools, tokenize;__file__='/tmp/pip-build-hwrcv0a1/cartopy/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-ytar95bq-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-hwrcv0a1/cartopy

请注意,我按照here安装了依赖项,geos_c.h可以找到/opt/local/include。似乎pip无法在macports树中找到此依赖项。

有没有人遇到过这种问题?我该如何解决?

https://github.com/SciTools/cartopy/issues/535也提出了这个问题。

2 个答案:

答案 0 :(得分:0)

最近有一些工作可以改善pip install cartopy体验。您是否介意再次尝试使用cartopy v0.12.0。

请参阅https://github.com/SciTools/cartopy/issues/610以供参考。

答案 1 :(得分:0)

这是为了回答Dror的最后一个问题,因为我使用的是macports,“pip install cartopy”找不到“proj_api.h”。要解决这个问题:

  1. 您需要确保安装了proj端口:sudo port install proj

  2. 帮助点按“/ opt / local / include”中的标题:CFLAGS="-I/opt/local/include" pip install cartopy

  3. 干杯和HTH