Replies: 1 comment 3 replies
-
This is already an requirement stated and given here: https://github.com/sn4k3/UVtools#linux |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Ubuntu 20.x and other releases will not run UVtools by default, you must install an extra package to make this work on a stock install.
TLDR;
sudo apt-get install -y libgeotiff-dev
Test your install by:
./UVtools
(note the command line -c convert flag is also an easy way to test)Error Fix
You will likely have gotten an error such as this one:
libcvextern: cannot open shared object file: No such file or directory
You can actually debug this further with this command:
ldd libcvextern.so
You will see a missing dependency, for Ubuntu it should be libgeotiff.so.5 => not found
The Fix
To fix this simply run the following:
sudo apt-get install -y libgeotiff-dev
Once that finishes you can use UVtools happily.
Beta Was this translation helpful? Give feedback.
All reactions