How can I install the old version of Inkscape (0.91) on a new system (17.04 Zesty Zepus)? The system came with the new version (0.92) which I removed via Synaptic and now I don't know how to add the 0.91 one. Any help greatly appreciated.
Asked
Active
Viewed 403 times
2
1 Answers
-1
Inkscape-0.91: You can get a package with a fake name, inkscape_0.92.1-10ubuntu17_amd64.deb → To prevent any automatic update from installing a new version.
dpkg -s inkscape
will report: Version 0.92.1 ... ... Description: Inkscape 0.91
Download link https://drive.google.com/file/d/0B7S255p3kFXNMDVycFMzeGtmLTA/view?usp=sharing The package provides /usr/local/bin/{inkscape, inkview}
.
The package was compiled and built with Ubuntu 17.04 .

Knud Larsen
- 3,084
-
To prevent updates from overwriting a particular version the proper way is to put a hold (https://askubuntu.com/a/18656/29073) on them, eg
sudo apt-mark hold <package-name>
. – pbhj Jul 27 '17 at 13:04
cd Downloads/ && sudo gdebi inkscape_0.91-7ubuntu2_amd64.deb
– Knud Larsen May 31 '17 at 22:50