3

我之前创建了很多模板,现在我正在按照建议的步骤创建推荐。

$ pio template get PredictionIO/template-scala-parallel-recommendation Foo

收到此错误:

[ERROR] [Template$] Either PredictionIO/template-scala-parallel-universal-recommendation is not a valid GitHub repository, or it does not have any tag. Aborting.

我如何解决这个问题,为什么会这样?

编辑:

我的预测版本0.9.5。使用 Ubuntu

4

3 回答 3

1

当您之前制作了pio deploy另一个模板时似乎会发生这种情况pio template get,因此您必须关闭eventserver默认端口 7070,如下所示:

$ lsof -wni tcp:7070
$ kill -9 PID

这解决了问题。

于 2015-11-25T10:23:42.527 回答
1

我遇到了这个问题,但是这个 google group post有我的解决方案。基本上pio 模板获取是在幕后克隆一个存储库,因此它可能存在与 git 相关的问题。

检查您是否可以从 Web 浏览器访问https://api.github.com/ 。如果没有,请查看 google 群组帖子。

于 2016-03-02T12:40:32.790 回答
0

也不需要这样做pio template get,只需从 github 克隆它即可。Universal Recommender 在其主页 repo 中保持最新:https ://github.com/actionml/template-scala-parallel-universal-recommendation/tree/v0.3.0

请注意 v0.3.0 即将发布,但尚未出现在模板库中。

于 2016-03-02T15:53:50.620 回答