ModuleNotFoundError:没有名为“pymatgen.analysis.interface”的模块

问题描述 投票:0回答:1

此导入会导致错误:

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'
。我该如何解决这个问题?

python google-colaboratory pymatgen
1个回答
0
投票

更改为

pymatgen.analysis.interfaces
interfaces
vs
interface

© www.soinside.com 2019 - 2024. All rights reserved.