AttributeError:模块“ boto”没有属性“ plugin”

时间:2018-09-19 21:09:49

标签: python google-cloud-platform jupyter-notebook google-compute-engine word2vec

我正在使用Jupyter Notebook和word2vec模型在Google Cloud Platform上运行VM。我有以下代码片段:

from gensim.models import Word2Vec
amazon_word2vec = Word2Vec(model, min_count=1, size=100)

它会导致错误:

AttributeError: module 'boto' has no attribute 'plugin'

上述问题的解决方法是什么?

1 个答案:

答案 0 :(得分:4)

pip install google-compute-engine

安装Google计算引擎并重新启动您的虚拟机,它可以正常工作。