You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the issue tracker for open issues that relate to the same problem, before opening a new one.
This issue only relates to a single bug. I will open new issues for any other problems.
Describe the bug
after install, issue a mod tidy fails:
➜ attendance_parser go mod tidy
go: finding module for package github.com/go-gl/gl/v3.1/gles2
go: finding module for package github.com/go-gl/gl/v2.1/gl
go: attendance-parser imports
fyne.io/fyne/v2/app imports
fyne.io/fyne/v2/internal/driver/glfw imports
fyne.io/fyne/v2/internal/painter/gl imports
github.com/go-gl/gl/v2.1/gl: module github.com/go-gl/gl@latest found (v0.0.0-20231021071112-07e5d0ea2e71), but does not contain package github.com/go-gl/gl/v2.1/gl
go: attendance-parser imports
fyne.io/fyne/v2/app imports
fyne.io/fyne/v2/internal/driver/glfw imports
fyne.io/fyne/v2/internal/painter/gl imports
github.com/go-gl/gl/v3.1/gles2: module github.com/go-gl/gl@latest found (v0.0.0-20231021071112-07e5d0ea2e71), but does not contain package github.com/go-gl/gl/v3.1/gles2
C:\Users\kensh\go\pkg\mod\fyne.io\fyne\[email protected]\internal\painter\gl\gl_core.go:8:2: no required module provides package github.com/go-gl/gl/v2.1/gl; to add it:
go get github.com/go-gl/gl/v2.1/gl
C:\Users\kensh\go\pkg\mod\fyne.io\fyne\[email protected]\internal\driver\glfw\driver_desktop.go:19:2: missing go.sum entry for module providing package fyne.io/systray (imported by fyne.io/fyne/v2/internal/driver/glfw); to add:
go get fyne.io/fyne/v2/internal/driver/[email protected]
C:\Users\kensh\go\pkg\mod\fyne.io\fyne\[email protected]\internal\driver\glfw\driver.go:12:2: missing go.sum entry for module providing package github.com/fyne-io/image/ico (imported by fyne.io/fyne/v2/internal/driver/glfw); to add:
go get fyne.io/fyne/v2/internal/driver/[email protected]
C:\Users\kensh\go\pkg\mod\fyne.io\fyne\[email protected]\internal\driver\glfw\clipboard.go:11:2: missing go.sum entry for module providing package github.com/go-gl/glfw/v3.3/glfw (imported by fyne.io/fyne/v2/internal/driver/glfw); to add:
go get fyne.io/fyne/v2/internal/driver/[email protected]
C:\Users\kensh\go\pkg\mod\fyne.io\fyne\[email protected]\internal\metadata\load.go:8:2: missing go.sum entry for module providing package github.com/BurntSushi/toml (imported by fyne.io/fyne/v2/internal/metadata); to add:
go get fyne.io/fyne/v2/internal/[email protected]
The text was updated successfully, but these errors were encountered:
Have you followed the steps on our getting started page? See https://docs.fyne.io/started/. It kind of looks like you are trying to compile without a C-compiler installed on your system.
I did follow these steps, I think I just resolved it, I had to install go-gl manually so it gets built properly, somehow fyne install wouldnt build properly?
Checklist
Describe the bug
after install, issue a mod tidy fails:
How to reproduce
Screenshots
No response
Example code
Fyne version
v2.5.3
Go compiler version
go version go1.23.3 windows/amd64
Operating system and version
windows 11
Additional Information
when runing the code I get:
The text was updated successfully, but these errors were encountered: