I solved this problem by making a small change in the scanner's .deb installation package.
Open a terminal in the directory where the installation .deb package is located and run the following code:
mkdir kyocera-sane
dpkg-deb -R kyocera-sane_2.1.4406_amd64.deb kyocera-sane/
and then open a text editor
nano kyocera-sane/DEBIAN/control
Find the following part in the file:
Depends: libsane (>= 1.0.21)
and replace it with:
Depends: libsane1 (>= 1.0.21)
save and close the file.
After you have made the edit, rebuild modified .deb package:
dpkg-deb -b kyocera-sane/ kyocera-sane-modified.deb
Finally, install the new package you created:
sudo dpkg -i kyocera-sane-modified.deb
Summary:
Parse your .deb installation file, make the necessary changes to the control file (libsane>libsane1), and rebuild your .deb installation file. Install your package using any method you like. It worked for me, it may work for you too.