无法从 Jupyter-Toree-Scala %AddDeps HBase 1.3.1
Failed to %AddDeps HBase 1.3.1 from Jupyter-Toree-Scala
我在 docker 容器 (https://github.com/jupyter/docker-stacks/tree/master/all-spark-notebook) 中使用这个 jupyter toree 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
,这意味着该库尚未安装。非常感谢任何建议,谢谢。
我解决了这个问题。导入了错误的项目名称。应该是 %AddDeps org.apache.hbase hbase-client 1.2.0 --transitive
我在 docker 容器 (https://github.com/jupyter/docker-stacks/tree/master/all-spark-notebook) 中使用这个 jupyter toree 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
,这意味着该库尚未安装。非常感谢任何建议,谢谢。
我解决了这个问题。导入了错误的项目名称。应该是 %AddDeps org.apache.hbase hbase-client 1.2.0 --transitive