我想在 windows7 上为 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/
我是一名优秀的程序员,十分优秀!