我正在开发一个涉及路线查找(一个完全不同的主题)的应用程序,但是为了测试,我需要示例迷宫进行测试。一位同事建议我使用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++ 开发,这一直有效。
我遇到了这个问题,但它似乎解决了一个单独的问题。
我正在 OSX 10.10.5 中开发
非常感谢您提供的任何帮助!