【发布时间】:2017-11-15 14:32:13
【问题描述】:
我正在开发一个涉及路线查找(完全不同的主题)的应用程序,但为了测试,我需要示例迷宫进行测试。一位同事建议我使用pydaedalus 以我需要的格式生成大型迷宫。我正在使用以下代码来尝试安装模块:
$pip3.6 install pydaedalus
这会返回以下错误:
-Wno-error=format-security
In file included from daedalus/_maze.cpp:467:
In file included from daedalus/wrapper.h:8:
daedalus/src/util.h:31:10: fatal error: 'cstdint' file not found
#include <cstdint>
^
1 error generated.
error: command '/usr/bin/clang' failed with exit status 1
我进行了一些研究,但没有发现任何解决此问题的方法。我还使用 cstdint 进行了一些(有限的)C++ 开发,这一直有效。
我遇到了this question,但它似乎解决了一个单独的问题。
我正在 OSX 10.10.5 中开发
非常感谢您提供的任何帮助!
【问题讨论】:
标签: python python-3.x pip cstdint