Gamming issue with sdl

So, I`m pretty new to all this go language and to programming in general.
I started a gamming course and the youtuber talks about some package and write this in the screen(go get github.com/veandco/go-sdl2/sdl ) does someone know how can i install and run it?

Exactly as the Youtuber did, probably…

Though that looks like an old way to install dependencies. Today you should use go modules to manage dependencies and their versions.

Also for that librarily you probably also need to install a system library SDL2, as I assume the library installed by the Youtuber ist just some wrapper that delegates calls to that C library.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.