Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我godep save ./...从项目的根目录运行时,出现以下错误。任何线索我可能需要解决什么?
godep save ./...
godep: 找不到包的 SrcRoot。
文件系统位置在 Go 中很重要。您应该从指定的“gopath”运行东西,但不要将 gopath 与 go 的位置混淆(不要将其设置为 go 的安装位置)。
您的 gopath 应该是您乐于在可预见的将来放置您的 go 源代码的位置。我已将我的设置为 /Users/ejiro/go。
cat <<END >> ~/.bashrc export GOPATH=/Users/ejiro/go END