尝试使用Google情感分析。这是我从Google教程中获得的代码。
“”“演示如何对Natural Language API进行简单调用。”“
// ctor example
public JpaPoint(Point point) {
this.x = point.getCoordinates().x;
this.y = point.getCoordinates().y;
this.z = point.getCoordinates().z;
}
// helper method
@Transient
public Point getPoint() {
return new Point( new Coordinates( x, y, z ) );
}
运行代码我收到以下错误:
来自google.cloud导入语言 ImportError:没有名为cloud的模块
答案 0 :(得分:0)
您需要安装实际的Google SDK Python模块。 google-cloud库是pip install-able:
pip install --upgrade google-cloud
查看更多here。
答案 1 :(得分:0)
我改用python -m pip install google-cloud并成功了!我遇到了同样的问题。我的问题是由pip引起的。Pip是在错误的目录中安装了google-cloud。