How do I obtain the newest stable Debian package files?
sudo dpkg -i ~/Downloads/libgoocanvas3_1.0.0-1_amd64.deb
sudo dpkg -i ~/Downloads/libgoocanvas-common_1.0.0-1_all.deb
sudo apt-get -f install
When I have to install Debian packages (see above) I first have to download them. Let me paste the entire links to these two packages:
libgoocanvas3
https://launchpad.net/ubuntu/+archive/primary/+files/libgoocanvas3_1.0.0-1_amd64.deb
libgoocanvas-common
https://launchpad.net/ubuntu/+archive/primary/+files/libgoocanvas-common_1.0.0-1_all.deb
As can be seen the two respective files are libgoocanvas3_1.0.0-1_amd64.deb
and libgoocanvas-common_1.0.0-1_all.deb
.
and now the questions
Do I need to use different Debian package versions dependent on my Ubuntu version?
How do I know these are the newest stable versions of each file (related to above)?
Where do I get the "official" latest and greatest files?
https://packages.ubuntu.com/bionic/allpackages
I can't seem to find libgoocanvas3 or libgoocanvas-common. Here are variants listed; libgoocanvas, libgoocanvas-2.0-common, libgoocanvas-2.0-dev, ibgoocanvas2-perl, libgoocanvasmm, libgoocanvasmm-2.0-dev, libgoocanvasmm-2.0-doc. Can u expand u answer? – Display name Feb 24 '20 at 17:03apt
so using Synaptic in effect is the same thing as installing software using command lineapt
orapt-get
-- my advice is to use the package currently supported by the distro, unless it's not possible to complete your tasks without manually installing older/newer version. This should be fairly rare. It seems from what others have mentioned that the package/library you were looking to install was an older version, so it's very likely that the current version supports everything that was supported in the older. – Nmath Feb 25 '20 at 23:30