我只是想将 Python 绑定(bind)到安装在 Red Hat Enterprise 机器上的 Mapnik 2.1,并在 Sage (sagemath.org) 中使用它们。这是一台我不能使用 yum 的公司机器,所以它一直是 tarball,宝贝。

我已经解决了安装依赖项和计算每个配置所需的语法的许多问题。每次我解决一个问题,就会有另一个问题。目前我无法让 mapnik 配置看到 libboost_system.so,它肯定在/usr/local/lib 中,并且有一个从/usr/lib 指向它的符号链接(symbolic link)。

细节:

Red Hat Enterprise system:
> more /proc/version
Linux version 2.6.18-92.el5PAE ([email protected]) (gcc version 4.1.2 20071124 (Red Hat 4.1.2-41))
used install directions at github.com/mapnik/mapnik/blob/master/INSTALL.md, github.com/mapnik/mapnik/wiki/Mapnik2 and elsewhere
installed proj 4.8 from tarball using several solutions provided on the web to fix install problems
installed icu4c-4_6 from tarball to /usr/local/...
installed boost 1.51 from tarball pointing to the newly installed icu:
download boost_1_51_0.tar.gz
tar ...
cd boost_1_51_0
./bootstrap.sh

(之前我直接 ./b2 安装所有 boost - 返回使用上述网页说明以这种方式重新安装部分 boost:)
sudo ./b2 --with-thread --with-filesystem --with-iostreams --with-python --with-regex -sHAVE_ICU=1 -sICU_PATH=/usr/local/lib --with-program_options --with-system link=shared toolset=gcc stage
sudo ./b2 --with-thread --with-filesystem --with-iostreams --with-python --with-regex -sHAVE_ICU=1 -sICU_PATH=/usr/local/lib --with-program_options --with-system link=shared toolset=gcc install
sudo /sbin/ldconfig

现在尝试安装 mapnik:
download mapnik-v2.1.0.tar.bz2
tar ...
cd ...
./configure PYTHON=/opt/sage-5.2/local/bin/python ICU_LIBS=/usr/local/lib ICU_INCLUDES=/usr/local/include BOOST_INCLUDES=/usr/local/include/boost BOOST_LIBS=/usr/local/lib

或者
./configure PYTHON=/opt/sage-5.2/local/bin/python ICU_LIBS=/usr/local/lib ICU_INCLUDES=/usr/local/include

或者
./configure PYTHON=/opt/sage-5.2/local/bin/python

(结果相同)
"scons: Reading SConscript files ...
Welcome to Mapnik...
Configuring build environment...
SCons CONFIG found: 'config.py', variables will be inherited...
Configuring on Linux in *release mode*...
Checking for freetype-config... yes
Checking for xml2-config... yes
Sorting lib and inc compiler paths...(cached) yes
Checking for C library m... yes
Checking for C library ltdl... yes
Checking for C library png... yes
Checking for C library tiff... yes
Checking for C library z... yes
Checking for C library proj... yes
Checking for C++ library icuuc... yes
Checking for C library jpeg... yes
Checking for ICU version >= 4.2... found: icu 4.6
(cached) Searching for boost libs and headers... (cached)
  *libs found: /usr/local/lib
  *headers found: /usr/local/include
  *no lib naming extension found
Checking for Boost version >= 1.47... yes
Found boost lib version... 1_51
Checking for C++ library boost_system... yes
Checking for C++ library boost_filesystem... yes
Checking for C++ library boost_regex... yes
Checking for C++ library boost_program_options... yes
Checking for C++ library boost_thread... yes
.sconf_temp/conftest_18: error while loading shared libraries: libboost_system.so.1.51.0:
cannot open shared object file: No such file or directory
Checking if boost_regex was built with ICU unicode support... (cached) no
Checking for requested plugins dependencies...
Checking for gdal-config --libs... yes
Checking for gdal-config --cflags... yes
Checking for name of gdal library... gdal
Checking if gdal is ogr enabled... yes
Checking for name of ogr library... gdal
Checking for C library curl... no
Checking for pg_config... error: no result no
Checking for C library sqlite3... no
Checking if SQLite supports RTREE... (cached) no
Checking for pkg-config... yes
Checking for cairo... no
Checking for C++ header file boost/python/detail/config.hpp... yes
Checking for pkg-config... yes
Checking for pycairo... no
All Required dependencies found!
Overwriting and re-saving file 'config.py'...
Will hold custom path variables from commandline and python config file(s)...

注意:将在没有这些可选依赖项的情况下构建:
  • boost_regex_icu(mapnik 中的 unicode regex 支持需要使用可选的 ICU unicode 支持构建的 libboost_regex。)
  • curl(“osm”插件需要libcurl - 更多信息:https://github.com/mapnik/mapnik/wiki//OsmPlugin)
  • pg_config(pg_config 程序 | 尝试设置 PG_CONFIG SCons 选项)
  • sqlite3(SQLite3 C 库 | 使用 SQLITE_LIBS 和 SQLITE_INCLUDES 进行配置 | 更多信息:https://github.com/mapnik/mapnik/wiki//SQLite)
  • sqlite_rtree(SQLite 插件需要使用 RTREE 支持构建的 libsqlite3 (-DSQLITE_ENABLE_RTREE=1))
  • cairo(Cairo C 库 | 使用 pkg-config 配置 | 尝试设置 PKG_CONFIG_PATH SCons 选项)
  • pycairo(Python 绑定(bind)到 Cairo 库 | 使用 pkg-config 配置 | 尝试设置 PKG_CONFIG_PATH SCons 选项)

    .sconf_temp/conftest_33:加载共享库时出错:libboost_system.so.1.51.0:无法打开共享对象文件:没有这样的文件或目录
    解析mapnik版本遇到问题,回退到2.1.0
    检查 C 头文件 Python.h... 是
    绑定(bind) Python 版本... 2.7
    Python 2.7 前缀.../opt/sage-5.2/local
    Python 绑定(bind)将安装在.../opt/sage-5.2/local/lib/python2.7/site-packages
    配置完成:运行 make to build 或 make install "
    制作
    “……
    /usr/bin/ld: 找不到 -lsqlite3
    collect2: 错误: ld 返回 1 个退出状态
    scons: * [tests/cpp_tests/csv_parse_test-bin] 错误 1
    scons:建筑物因错误而终止。
    制作:*
    [mapnik] 错误 2"

  • 但我认为 sqlite3 是可选的......

    我认为 sqlite3 问题可能是一个红鲱鱼。之前的问题是configure阶段没有找到boost_thread。我的系统显示:
    ls -l /usr/local/lib/libboost_system.so*
    lrwxrwxrwx 1 root root    25 Sep 11 17:40 /usr/local/lib/libboost_system.so -> libboost_system.so.1.51.0
    -rwxr-xr-x 1 root root 16898 Sep 11 17:40 /usr/local/lib/libboost_system.so.1.51.0
    ldd /usr/local/lib/libboost_system.so.1.51.0
            linux-gate.so.1 =>  (0x005c1000)
            librt.so.1 => /lib/librt.so.1 (0x00cd9000)
            libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x002f4000)
            libm.so.6 => /lib/libm.so.6 (0x009e1000)
            libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00f82000)
            libpthread.so.0 => /lib/libpthread.so.0 (0x00a6a000)
            libc.so.6 => /lib/libc.so.6 (0x00110000)
            /lib/ld-linux.so.2 (0x0050d000)
    

    所以它确实存在并且有效。

    为了安全起见(这没有帮助)添加了一个符号链接(symbolic link):
    ls -l /usr/lib/libboost_system.so
    lrwxrwxrwx 1 root root 33 Sep 14 10:16 /usr/lib/libboost_system.so -> /usr/local/lib/libboost_system.so
    

    这很奇怪,因为在同一位置可以找到其他图书馆。此外,配置阶段在“搜索 boost 库和头文件...找到的库:/usr/local/lib”错误之前声明了几行

    在这一点上,我真的不相信 scons。我还有另一个问题,mapnik 配置阶段找不到库 (libproj)。然后后来又说boost的版本至少不是1.48。一旦我添加了指向 proj .so 文件的正确符号链接(symbolic link),有关 boost 版本的配置错误就消失了。所以我坚持一般规则,你应该专注于发现的第一个错误并解决那个错误。

    请注意,Python 的非标准位置 (PYTHON=/opt/sage-5.2/local/bin/python) 似乎没问题。

    查看 mapnik 日志文件 config.log,但没有我可以看到的其他信息。检查了网络和 github.com/mapnik/mapnik/wiki/InstallationTroubleshooting 但没有任何相关性。抱歉,帖子很长,但细节很重要。谢谢阅读。

    另一个线索可能是:
    Checking if boost_regex was built with ICU unicode support... (cached) no
    

    即使以上表明这是正确完成的(?)。

    最佳答案

    灼热,

    Mapnik 用户列表将是一个更好的地方。

    无论如何,我认为问题在于您没有将系统配置为在/usr/local/lib 中查找库。您需要执行 export LD_LIBRARY_PATH=/usr/local/lib 或在运行 /usr/local/lib 之前将 /etc/ld.so.conf/ 添加到您的 ldconfig 中。

    可能会混淆的小问题:1)您的 BOOST_INCLUDES 选项是错误的,它应该是 BOOST_INCLUDES=/usr/local/include/ 而不是 BOOST_INCLUDES=/usr/local/include/boost 。 2)我真的不建议符号链接(symbolic link)到 /usr/lib - 可以破坏事情的奇怪方式

    此外,尽管在配置过程中出现链接错误,但我认为您总体上还可以。与测试的链接错误不是什么大问题,可能是我们需要选择的。我认为构建过程中唯一的主要问题是 boost 链接,这应该是可以解决的。

    关于boost - 在 Red Hat Linux 上安装 mapnik 失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12427595/

    10-12 23:24