我正在使用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'
上述问题的解决方法是什么?
答案 0 :(得分:4)
pip install google-compute-engine
安装Google计算引擎并重新启动您的虚拟机,它可以正常工作。