guillaumechereau / goxel

Goxel: Free and Open Source 3D Voxel Editor
GNU General Public License v3.0
2.73k stars 219 forks source link

Program don't started #278

Closed maxtar closed 1 year ago

maxtar commented 2 years ago

When try to start in console got an error: ./goxel-0.10.8-linux: error while loading shared libraries: libglfw.so.3: cannot open shared object file: No such file or directory

EZRAIDv2 commented 2 years ago

Same

EZRAIDv2 commented 2 years ago

I found the fix: Run sudo apt install goxel in terminal.

maxtar commented 2 years ago

@EZRAIDv2 this command install from repository. Need to add them?

ghost commented 2 years ago

When try to start in console got an error: ./goxel-0.10.8-linux: error while loading shared libraries: libglfw.so.3: cannot open shared object file: No such file or directory

True solution according to my Linux experience - use one of the following commands : sudo apt-get install libglfw3 : for classic use sudo apt-get install libglfw3-dev: for development use

Ubuntu package info : https://packages.ubuntu.com/jammy/libglfw3 Ubuntu package file list on amd64 version : https://packages.ubuntu.com/jammy/amd64/libglfw3/filelist

/usr/lib/x86_64-linux-gnu/libglfw.so.3
/usr/lib/x86_64-linux-gnu/libglfw.so.3.3
/usr/share/doc/libglfw3/changelog.Debian.gz
/usr/share/doc/libglfw3/copyright

The command "sudo apt install goxel" will not install maybe the latest version of the program on some linux OS

pegvin commented 1 year ago

glfw is not installed for some reason, you can install it via:

On Debian & it's children:

sudo apt-get install libglfw3

On Arch & it's children:

yay -S glfw3
guillaumechereau commented 1 year ago

Closing because I think the issue is not in goxel itself.