我想在 windows7.i 上为 python 安装 METIS 使用:

pip install metis

我得到了这个结果:
Requirement already satisfied: metis in
c:\users\mina\appdata\local\programs\python\python36\lib\site-packages
(0.2a4)

我使用了以下代码:
make config shared=1

我得到了这个结果:
make: *** No rule to make target `config'.  Stop.

也许你可以帮助我。

最佳答案

pip install metis
      -or-
easy_install metis

从源代码构建 Metis 时,您可能需要在配置选项中添加“shared=1”,以便构建共享库而不是静态库。

请注意,共享库是必需的,并且在配置过程中默认不启用。通过发出以下命令打开它:
make config shared=1
make install

然后,设置您的 METIS_DLL 环境变量:
export METIS_DLL=/usr/local/lib/libmetis.dylib

资料来源:https://metis.readthedocs.io/en/latest/

关于python - 如何为python安装METIS库?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54326406/

10-12 19:02