登录
首页 >  Golang >  Go问答

包 code.google.com/p/go.example/hello:exec:“hg”:在 %PATH% 中找不到可执行文件。如何获取远程golang 包?

来源:Golang技术栈

时间:2023-04-26 15:46:16 318浏览 收藏

今日不肯埋头,明日何以抬头!每日一句努力自己的话哈哈~哈喽,今天我将给大家带来一篇《包 code.google.com/p/go.example/hello:exec:“hg”:在 %PATH% 中找不到可执行文件。如何获取远程golang 包?》,主要内容是讲解golang等等,感兴趣的朋友可以收藏或者有更好的建议在评论提出,我都会认真看的!大家一起进步,一起学习!

问题内容

我按照编写的 Golang 教程http://golang.org/doc/code.html#remote

我的环境设置:

C:\sbox\go\example>set go
    GOPATH=C:\sbox\go\example
    GOROOT=C:\Go

example/文件夹只有src/文件夹:

C:\sbox\go\example\
             |
             --src\

现在我go get按照描述调用并得到一个错误:

C:\sbox\go\example>go get code.google.com/p/go.example/hello
# cd .; hg clone -U https://code.google.com/p/go.example C:\sbox\go\example\src\code.google.com\p\go.example
package code.google.com/p/go.example/hello: exec: "hg": executable file not found in %PATH%

但是,在调用之后go get,我的example/文件夹变成了这样:

C:\sbox\go\example\
             |
             --src\
                |
                code.google.com\
                       |
                       --p\

就这样。没有更多的安装。

然后我在我的目录结构中添加一个代码,它变成了这样:

C:\sbox\go\example\
             |
             --src\
                |
                ---code.google.com\
                |        |
                |        --p\
                |
                ---github.com\
                       |
                       --user\
                           |
                           --hello\
                           |   |
                           |   --hello.go
                           |
                           --newmath\
                                |
                                --sqrt.go

hello.go是这样的:

package main

import (
    "fmt"
    "github.com/user/newmath"
    //"code.google.com/p/go.example/newmath"
)

func main() {
    fmt.Printf("Hello, world.  Sqrt(2) = %v\n", newmath.Sqrt(2))
}

sqrt.go是这样的:

// Package newmath is a trivial example package.
package newmath

// Sqrt returns an approximation to the square root of x.
func Sqrt(x float64) float64 {
    z := 0.0
    for i := 0; i 

我只是应付/粘贴它们。一切都写在教程中。然后我做go install并运行这个项目。一切正常:

C:\sbox\go\example\src\github.com\user\hello>go install

C:\sbox\go\example\bin>hello
Hello, world.  Sqrt(2) = 1.414213562373095

现在我再次运行go get并得到相同的错误:

C:\sbox\go\example>go get code.google.com/p/go.example/hello
# cd .; hg clone -U https://code.google.com/p/go.example C:\sbox\go\example\src\code.google.com\p\go.example
package code.google.com/p/go.example/hello: exec: "hg": executable file not found in %PATH%

好的,我将bin/目录添加到 PATH 并go get再次运行,但得到相同的错误:

C:\sbox\go\example>set PATH=%PATH%;C:\sbox\go\example\bin

C:\sbox\go\example>go get code.google.com/p/go.example/hello
# cd .; hg clone -U https://code.google.com/p/go.example C:\sbox\go\example\src\code.google.com\p\go.example
package code.google.com/p/go.example/hello: exec: "hg": executable file not found in %PATH%

我需要做什么才能获得教程中描述的结果 - 远程包已安装并且我可以使用它们?

正确答案

您尝试安装的软件包位于 Mercurial ( hg) 源代码控制系统下。您需要安装[Mercurial](https://www.mercurial- scm.org/)才能克隆该软件包。

以上就是《包 code.google.com/p/go.example/hello:exec:“hg”:在 %PATH% 中找不到可执行文件。如何获取远程golang 包?》的详细内容,更多关于golang的资料请关注golang学习网公众号!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>