从jupyter toree scala添加%deps hbase 1.3.1失败

omhiaaxx  于 2021-06-08  发布在  Hbase
关注(0)|答案(1)|浏览(451)

我用的是装在码头集装箱里的笔记本(https://github.com/jupyter/docker-stacks/tree/master/all-spark-notebook).
我尝试使用笔记本中的%adddeps命令添加hbase依赖项: %AddDeps org.apache.hbase hbase 1.3.1 --transitive --verbose 似乎找到了所有依赖项,但我仍然得到以下输出(空错误?):

Magic AddDeps failed to execute with error: 
null

我不能打电话 import org.apache.hadoop.hbase 随后,表示库尚未安装。我非常感谢你的建议,谢谢。

4bbkushb

4bbkushb1#

我解决了这个问题。导入了错误的项目名称。应该是的 %AddDeps org.apache.hbase hbase-client 1.2.0 --transitive

相关问题