nixGL icon indicating copy to clipboard operation
nixGL copied to clipboard

Error I got everytime i ran it even through different methods

Open Felopater-Melika opened this issue 1 year ago • 1 comments

/nix/store/40xcrs3ff32jzzzsmf28i92h8l8c12ax-nixGL/bin/nixGL: line 6: exec: program: not found

i got this exact error from using the channel method and running it directly from a flake

Felopater-Melika avatar Apr 23 '24 14:04 Felopater-Melika

exec: program:

Means you're trying to run a program called program, since it is a generic name there's likely no such program on your system. You should use existing programs that bash can find in paths specified in your PATH environment variable or if you're trying to run some other executable use either an absolute or a relative path, if it is in your working directory prepend it with ./

nasrally avatar May 05 '24 16:05 nasrally