如何将库从 github 导入到 GO playground?
How can I import a library from github to GO playground?
您好,我想将第 3 方库导入 GO playground,我看到了这个问题的答案: but it said that this can not be done, but the xiam/go-playground github 上的库声明它可以做到这一点。我尝试使用它,但我不明白我到底应该做什么。我成功安装了该库并将其用于 运行 不需要第三方库的程序。但我不知道如何导入第三方库。 ps:我的机器上安装了 docker
答案仍然相同:您不能在 "official" Go Playground(位于 https://play.golang.org/)上这样做。
如果您或其他人运行自定义的、修改后的 Go Playground 版本:那么答案是您可以在那里做任何允许的事情,其中可能包括使用自定义引擎可能 go get
在编译和执行之前。
另见相关问题:
从 2019 年 5 月 14 日起您可能可以这样做
参见 this tweet (from Brad Fitzpatrick)!
The #golang playground now supports third-party imports, pulling them in via https://proxy.golang.org/
Example: https://play.golang.org/p/eqEo7mqdS9l
Multi-file support & few other things up next.
Report bugs at golang/go
issue 31944, or here on the tweeters.
但这意味着您已经以 the Go proxy 引用的方式发布了您的包可交付成果。
您好,我想将第 3 方库导入 GO playground,我看到了这个问题的答案:
答案仍然相同:您不能在 "official" Go Playground(位于 https://play.golang.org/)上这样做。
如果您或其他人运行自定义的、修改后的 Go Playground 版本:那么答案是您可以在那里做任何允许的事情,其中可能包括使用自定义引擎可能 go get
在编译和执行之前。
另见相关问题:
从 2019 年 5 月 14 日起您可能可以这样做
参见 this tweet (from Brad Fitzpatrick)!
The #golang playground now supports third-party imports, pulling them in via https://proxy.golang.org/
Example: https://play.golang.org/p/eqEo7mqdS9l
Multi-file support & few other things up next.
Report bugs atgolang/go
issue 31944, or here on the tweeters.
但这意味着您已经以 the Go proxy 引用的方式发布了您的包可交付成果。