Hello Guys,
When you can’t find a package on your default Linux distro the easy way is via apt-cache search or apt install. Then we will have to deal with manual installation from the .deb file.
dpkg -i filename.deb
it is as easy as this. Just in case it has dependencies after running the install with dpkg run commands below:
apt update
apt --fix-broken install
Congrats.
0 Comments