此导入会导致错误:
from pymatgen.analysis.interface import get_interface
但是这些导入工作正常:
from pymatgen.core.structure import Structure
from pymatgen.core.surface import SlabGenerator
我尝试在 google colab 中运行它,但收到错误
ModuleNotFoundError: No module named 'pymatgen.analysis.interface'
。我该如何解决这个问题?
更改为
pymatgen.analysis.interfaces
(interfaces
vs interface
)