简单的 Go 项目,具有外部依赖:
import (
"fmt"
"html"
"log"
"net/http"
"github.com/gorilla/mux"
)
我的路径适用于其他任务,如运行、构建等:
GOPATH="/home/racar/go"
但是当我尝试使用“go get”命令获取外部包时,我收到了这个错误:
“去安装:没有目录的安装位置......在GOPATH之外”
编辑:我已经在 ~/.bashrc 中设置了我的 PATH:export PATH=$PATH:$GOROOT/bin:$GOPATH/bin