Intalled properly
"The following packages have unmet dependencies:
kitematic: D茅pend: gvfs-bin but it is not installable"
This is the latest ubuntu software release. I actually run on pop_OS 20.10, all packages updates have been installed.
I have same issue.
What am doing is follow this post https://gnu-linux.org/quickly-edit-a-deb-package.html.
Remove dependencie gvfs-bin from file DEBIAN/control.
Now it can be installed.
sudo dpkg -i Kitematic-0.17.13_amd64.deb
PS. at your own risk
I find this program requires python2,in fact I prefer to using python3 and so I give up.
Based on the solution provided by @yue-wen , PFB the steps to tackle this hassle (DEBIAN Package unpack-edit-pack). The gnu-linux URL didn't open when I tried.
Assumption: You already downloaded the "Kitematic-0.17.13_amd64.deb" package.
mkdir tmp_dsudo dpkg-deb -R Kitematic*.deb tmp_d # unpack/raw-extract the Debian package to tmp directorysudo dpkg-deb -b tmp_d/ Kitematic-0.17.13_amd64.deb # pack/build the Debian package using tmp directorysudo dpkg -i Kitematic-0.17.13_amd64.deb # Kitematic installationKitematic should be installed by now. You can find it in installed applications.
Feel free to let me know your feedback/complaint abouta my post.
Most helpful comment
I have same issue.
What am doing is follow this post https://gnu-linux.org/quickly-edit-a-deb-package.html.
Remove dependencie gvfs-bin from file
DEBIAN/control.Now it can be installed.
PS. at your own risk