← Return to tool
Log in with itch.io to leave a comment.
Linux mint, 0.9.7
error while loading shared libraries: libavformat.so.62: cannot open shared object file: No such file or directory
The error “error while loading shared libraries” in this case just requires installing the missing dependencies via apt:
apt install libavformat-dev
In case of other errors, just install the other dependencies:
ffmpeg
libsdl2-dev
libsdl2-image-dev
libavcodec-dev
libavformat-dev
libavutil-dev
libswscale-dev
libomp-dev
zlib1g-dev
That should fix it. If it does not resolve the problem, you need to extract the AppImage and install all the missing dependencies:
./float-ditherer-x86_64.AppImage --appimage-extract
cd ./squashfs-root/usr/bin
ldd ./ditherer
This should list all of the dependencies. If there is a missing .so file, you can identify the corresponding package and install it with apt.
Appimage exists to not have those kinds of issues.
Package your dependencies in your appimage, package them properly.
The 0.9.7 Windows archive is corrupted.
Thanks it should be fixed now
← Return to tool
Comments
Log in with itch.io to leave a comment.
Linux mint, 0.9.7
error while loading shared libraries: libavformat.so.62: cannot open shared object file: No such file or directory
The error “error while loading shared libraries” in this case just requires installing the missing dependencies via apt:
apt install libavformat-dev
In case of other errors, just install the other dependencies:
ffmpeg
libsdl2-dev
libsdl2-image-dev
libavcodec-dev
libavformat-dev
libavutil-dev
libswscale-dev
libomp-dev
zlib1g-dev
That should fix it. If it does not resolve the problem, you need to extract the AppImage and install all the missing dependencies:
./float-ditherer-x86_64.AppImage --appimage-extract
cd ./squashfs-root/usr/bin
ldd ./ditherer
This should list all of the dependencies. If there is a missing .so file, you can identify the corresponding package and install it with apt.
Appimage exists to not have those kinds of issues.
Package your dependencies in your appimage, package them properly.
The 0.9.7 Windows archive is corrupted.
Thanks it should be fixed now