#[SOLVED] Invalid path: core:fmt on Scoop install
1 messages · Page 1 of 1 (latest)
import rl "vendor:raylib"
main :: proc() {
rl.InitWindow(1280, 720, "raylib [core] example")
rl.SetTargetFPS(240)
for !rl.WindowShouldClose {
rl.BeginDrawing()
defer rl.EndDrawing()
rl.ClearBackground(rl.BLACK)
rl.DrawFPS(10, 10)
}
}```
code for reference.
if i do the hello world i do get an error for core:fmt as well
To my knowledge, nobody here maintains a scoop package for Odin.
Indeed, I don't think there are any official packages for Odin in ANY package manager at all.
Building Odin though is easy. Just clone and run make release or ./build release
there isn't, and scoop does auto update based the github releases.
odin lists package managers on the getting started page iirc. my brew install works, i thought they just got it from github like blob said
odin expects there to be base, core & vendor (which correspond to the collections), and bin folders next to the exe.
if they're not there, then scoop isn't accounting for the way jeroen does releases. which is fair enough.
hmmn yea
guess im actually installing :(((
Latest release from odin-lang.org has it
Though, you need MSVC for dev anyway in which case building from source has no deps and takes all of 20 seconds
i got msvc when i installed windows sdk
thanks for the help!
is there a way to mark as fixed?
just rename with something like [Solved] My Title