英文:
Build documentation for Go 1 on Windows
问题
如何在Windows上构建Go 1文档?
在我的机器上,它位于D:\ go \ doc,并且所有链接和路径都已损坏。
英文:
How to build Go 1 documentations on Windows?
It is at D:\go\doc on my machine and all links and paths are broken.
答案1
得分: 5
我不是Windows的专家,但Go的文档不是这样工作的。你应该使用godoc
命令来访问Go的文档。运行godoc -http=:6060
,然后在浏览器中访问http://127.0.0.1:6060
来查看文档。
英文:
I'm not a master on Windows, but Go's documentation does not work like that. You should use godoc
command for accessing Go documentation. Run godoc -http=:6060
and access documentation at http://127.0.0.1:6060
in your browser.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论