I try to compile my project, and get following output:
<code>http_service/service.go:17:6: no required module provides package github.com/gofiber/template/html; to add it:
go get github.com/gofiber/template/html
inot_ent_check/sqlite_inp.go:8:2: no required module provides package modernc.org/sqlite; to add it:
go get modernc.org/sqlite
</code>
<code>http_service/service.go:17:6: no required module provides package github.com/gofiber/template/html; to add it:
go get github.com/gofiber/template/html
inot_ent_check/sqlite_inp.go:8:2: no required module provides package modernc.org/sqlite; to add it:
go get modernc.org/sqlite
</code>
http_service/service.go:17:6: no required module provides package github.com/gofiber/template/html; to add it:
go get github.com/gofiber/template/html
inot_ent_check/sqlite_inp.go:8:2: no required module provides package modernc.org/sqlite; to add it:
go get modernc.org/sqlite
Then I type:
<code>go get modernc.org/sqlite
</code>
<code>go get modernc.org/sqlite
</code>
go get modernc.org/sqlite
and get following:
<code>modernc.org/sqlite imports
modernc.org/libc imports
slices: package slices is not in GOROOT (/usr/local/go/src/slices)
</code>
<code>modernc.org/sqlite imports
modernc.org/libc imports
slices: package slices is not in GOROOT (/usr/local/go/src/slices)
</code>
modernc.org/sqlite imports
modernc.org/libc imports
slices: package slices is not in GOROOT (/usr/local/go/src/slices)
Also I type:
<code>go get github.com/gofiber/template/html
</code>
<code>go get github.com/gofiber/template/html
</code>
go get github.com/gofiber/template/html
and get:
<code>go: module github.com/gofiber/template@upgrade found (v1.8.3), but does not contain package github.com/gofiber/template/html
</code>
<code>go: module github.com/gofiber/template@upgrade found (v1.8.3), but does not contain package github.com/gofiber/template/html
</code>
go: module github.com/gofiber/template@upgrade found (v1.8.3), but does not contain package github.com/gofiber/template/html
How can it be solved? I don’t understand the nature of this problem. Any advise appreciated. I really need these two packages in my project.
1