-
Notifications
You must be signed in to change notification settings - Fork 72
Description
Hello,
I'm stuck with a dependency problem, installing makerscanner on Linux mint 21 (Ubuntu 22.04) and would be thankful for any hint to resolve it.
I've successfully installed makerscanner on Linux Mint 19.1 (Ubuntu 18.4), following the given instructions:
sudo apt-get install libwxgtk3.0-dev libgsl0-dev libopencv-dev
./bootstrap.sh
./configure
make
sudo make install
With Linux Mint 21 the "libwxgtk3.0-dev" package seems to have been renamed to "libwxgtk3.0-gtk3dev". So when I execute the following steps:
sudo apt-get install libwxgtk3.0-gtk3-dev libgsl0-dev libopencv-dev
./bootstrap.sh
./configure
It doesn't find the opencv library:
checking for opencv >= 2.0... no
configure: error: Package requirements (opencv >= 2.0) were not met:No package 'opencv' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.Alternatively, you may set the environment variables OPENCV_CFLAGS
and OPENCV_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
Has anyone seen or resolved this issue already?