【问题标题】:Which $path is needed so g++/pybind11 could locate Python.h?需要哪个 $path 以便 g++/pybind11 可以找到 Python.h?
【发布时间】:2017-03-02 16:08:45
【问题描述】:

我开始使用pybind11(在 Ubuntu 16.04Python 2.7 上)。

为了试水,我在我的 c++ 库周围创建了一个无操作的包装器。唉,编译找不到Python.h

$ g++ -std=c++0x -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar   -ftree-vectorize  -ftree-vectorize -mssse3  backend.h uvc-v4l2.cpp wrap.cpp  -o wrap.so
backend.h:4:9: warning: #pragma once in main file
 #pragma once
         ^
In file included from /usr/local/include/pybind11/pytypes.h:12:0,
                 from /usr/local/include/pybind11/cast.h:13,
                 from /usr/local/include/pybind11/attr.h:13,
                 from /usr/local/include/pybind11/pybind11.h:36,
                 from wrap.cpp:1:
/usr/local/include/pybind11/common.h:72:20: fatal error: Python.h: No such file or directory
 #include <Python.h>
                    ^
compilation terminated.

但是,我似乎确实有文件:

$ find /usr -name Python.h
/usr/include/python2.7/Python.h
/usr/include/python3.5m/Python.h

我应该更正哪个(路径?)以便g++ 能够找到Python.h


注意事项:

$ apt list | grep -iE -- '^python.-dev|^python-dev'

WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

python-dev/xenial,now 2.7.11-1 amd64 [installed]
python3-dev/xenial,now 3.5.1-3 amd64 [installed]

$ dpkg -S Python.h
libpython2.7-dev:amd64: /usr/include/python2.7/Python.h
libpython3.5-dev:amd64: /usr/include/python3.5m/Python.h

$ dpkg -L python2.7-dev
/.
/usr
/usr/bin
/usr/share
/usr/share/man
/usr/share/man/man1
/usr/share/doc
/usr/share/doc/python2.7
/usr/share/doc/python2.7/x86_64-linux-gnu
/usr/share/doc/python2.7/x86_64-linux-gnu/test_results.gz
/usr/share/doc/python2.7/x86_64-linux-gnu/pybench.log.gz
/usr/share/doc/python2.7/gdbinit.gz
/usr/share/doc/python2.7/HISTORY.gz
/usr/share/doc/python2.7/README.valgrind.gz
/usr/share/doc/python2.7/README.maintainers
/usr/bin/python2.7-config
/usr/share/man/man1/python2.7-config.1.gz
/usr/share/doc/python2.7-dev

【问题讨论】:

    标签: python c++ ubuntu-16.04 pybind11


    【解决方案1】:

    -I/usr/include/python2.7

    -I 标志将目录添加到要搜索头文件的目录列表中。如果您想要 python3.5 等效项,则将 2.7 替换为 3.5m

    获取此标志的更可靠方法是使用pkg-config。例如:

    $ pkg-config --cflags python
    -I/usr/include/python2.7 -I/usr/include/x86_64-linux-gnu/python2.7
    $ pkg-config --cflags python3
    -I/usr/include/python3.6m -I/usr/include/x86_64-linux-gnu/python3.6m
    

    【讨论】:

      猜你喜欢
      • 2011-08-26
      • 1970-01-01
      • 2019-08-09
      • 1970-01-01
      • 2011-11-03
      • 2020-04-20
      • 1970-01-01
      • 2017-08-12
      • 2016-06-13
      相关资源
      最近更新 更多