-1

我尝试在 mac os 中将 FANN 与我的 python 绑定。我有接下来的步骤: 1. 下载 FANN 2.2 2. 照常安装。

  ./configure
  make
  sudo make install

2.安装最后一个XCODE 3.下载源代码FANN进行绑定。3.然后我尝试:

python setup.py install

4. 我有问题:

unable to execute gcc-4.2: No such file or directory

5.我解决了这个问题,我试试

sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.2

和这项工作。

6.然后我再试一次python setup.py install

在我有新错误之后:

ld: library not found for -ldoublefann

clang: error: linker command failed with exit code 1 (use -v to see invocation)

error: command 'g++-4.2' failed with exit status 1

怎么了?谢谢。

4

1 回答 1

0

我解决了这个问题。只需使用本指南 - http://witzawitz.com/2012/11/installing-fann-on-macosx-10-7-with-python-binding/

设置后创建文件夹“nets”fann-2.1.0/python/examples/ 以正确使用示例文件。

于 2014-10-20T14:24:50.730 回答