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

Rav*_*i G 2 python google-compute-engine google-cloud-platform word2vec jupyter-notebook

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

from gensim.models import Word2Vec
amazon_word2vec = Word2Vec(model, min_count=1, size=100)
Run Code Online (Sandbox Code Playgroud)

并导致错误:

AttributeError: module 'boto' has no attribute 'plugin'
Run Code Online (Sandbox Code Playgroud)

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

小智 6

pip install google-compute-engine
Run Code Online (Sandbox Code Playgroud)

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