我正在遵循this指南为Python安装GUDHI。我运行了以下命令
cd /path-to-gudhi/
mkdir build
cd build/
cmake ..
cd python
make
此后,向导说要做
cd /path-to-gudhi/build/python
# May require sudo or administrator privileges
make install
但是当我运行make install时,什么也没有发生,它只会返回
Install the project...
-- Install configuration: ""
我真的不知道我做错了什么(这是我第一次安装python模块)。在python中输入
import gudhi
它返回
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'gudhi'
我也是
make test
在命令行上,它返回
Running tests...
Test project /home/alex/gudhi.3.0.0/build/python
No tests were found!!!
可能出了什么问题?
答案 0 :(得分:0)
安装所有依赖项并使其进行编译可能很复杂。 gudhi conda package是否可以满足您的需求?您只需要首先安装Miniconda(在Python 3.X中)。 最近,gudhi pip package也可用。