在python中导入集群

时间:2019-04-17 14:33:22

标签: python python-3.6 importerror

在python 3.6中的导入群集期间遇到错误。

import clusters
---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-25-63e76c87813b> in <module>
----> 1 import clusters

ModuleNotFoundError: No module named 'clusters'

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

您只需要cluster,删除s:

import cluster

..应该可以。这是Pypi供参考