我目前正在尝试安装Shogun机器学习工具箱并将其与Python一起使用。我遇到了Eigen3包的问题,当我尝试sudo port install shogun
时它给了我这个错误(日志文件):
:info:configure Error: Eigen3 not found
...
:info:configure ./configure-11619-9060.cpp:1:10: fatal error: 'Eigen/Dense' file not found
:info:configure #include <Eigen/Dense>
:info:configure ^
我看到有人说改为
#include "Eigen/Dense"
解决他们的问题,但我无法访问此文件,因此我无法更改它。
如果我输入
$ ls /opt/local/include/eigen3/
Eigen unsupported
signature_of_eigen3_matrix_library
它给了我这个,所以我不知道该尝试什么,任何想法?
编辑:我使用this formula这些自定义2行
args = std_cmake_args + [
...
"-DBUNDLE_EIGEN=ON",
"-DPythonModular=ON",
...
]
现在它不会报告任何错误,但它无法识别shogun
$ ipython
In [1]: import shogun
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-0add07018436> in <module>()
----> 1 import shogun
ImportError: No module named shogun
In [2]: import modshogun
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-2-0add07018436> in <module>()
----> 1 import modshogun
ImportError: No module named modshogun