为了账号安全,请及时绑定邮箱和手机立即绑定

安装软件包信息

安装软件包信息

Go
烙印99 2022-09-19 21:29:09
我正在尝试按照这些说明安装软件包去学习。在终端中运行后go get -t -u -v github.com/sjwhitworth/golearn我试图运行(根据需要):cd $GOPATH/src/github.com/sjwhitworth/golearn但是,bash 找不到这个目录。我该怎么办?(我使用的是操作系统)
查看完整描述

2 回答

?
慕森王

TA贡献1777条经验 获得超3个赞

安装软件包格莱学


示例构建,在 /家/名称/tmp/ 中


git clone https://github.com/sjwhitworth/golearn.git

cd golearn/


        ## Completing the installation

        ## Run the following to complete installation

go get -t -u -v ./...

使用:请(也)阅读 README.md 的文本文件。


查看完整回答
反对 回复 2022-09-19
?
FFIVE

TA贡献1797条经验 获得超6个赞

golearn的指令可能有些过时,你可以按照我的流程:

  1. cd到一个空的文件夹中,就像 一样,下面的所有命令都应该在这个 floder 上运行/home/your/code/my_golearn

  2. 运行初始化一个 go 项目,你会得到一个文件go mod init my_golearngo.mod

  3. 创建一个文件,并用 https://github.com/sjwhitworth/golearn#getting-started 的代码填充它main.go

  4. go get github.com/sjwhitworth/golearn

  5. 运行以获取所有依赖项go mod download

  6. 运行,这很奇怪,但是如果这个命令错过了就不起作用了,我想也许golearn的开发人员对go mod有一些误用go get github.com/sjwhitworth/golearn/knn

  7. 运行以获取所需的数据集wget https://raw.githubusercontent.com/sjwhitworth/golearn/master/examples/datasets/iris.csv -P datasets

  8. 运行 ,您将获得与 https://github.com/sjwhitworth/golearn#getting-started 相同的结果go run ./main.go

如果您不熟悉如何在现代围棋项目中安装依赖项,最好先了解 https://go.dev/blog/using-go-modules


查看完整回答
反对 回复 2022-09-19
  • 2 回答
  • 0 关注
  • 74 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信