Learn how to install inkscape with the command sudo apt-get install inkscape on Ubuntus.
Ads
Quick installation of inkscape:
Step 1: Update system:
sudo apt-get update
Step 2: Install: inkscape
Ater updaing the OS run following command to install the packae:
sudo apt-get install inkscape
Package Details | |
Package: | inkscape |
Version: | 0.48.3.1-1ubuntu1.1 |
Maintainer: | Ubuntu Developers |
Home page: | http://www.inkscape.org/ |
Description: | vector-based drawing program Inkscape loads and saves a subset of the SVG (Scalable Vector Graphics) format, a standard maintained by the WWW consortium. . Inkscape user interface should be familiar from CorelDraw and similar drawing programs. There are rectangles, ellipses, text items, bitmap images and freehand curves. As an added bonus, both vector and bitmap objects can have alpha transparency and can be arbitrarily transformed. . Inkscape supports multiple opened files and multiple views per file. Graphics can be printed and exported to png bitmaps. . Some of the import and export features are provided using the packages dia, libwmf-bin, pstoedit, skencil, imagemagick, and perlmagick. . Other extensions use ruby, libxml-xql-perl, python-numpy, and python-lxml. You must have these packages to make full use of all extensions and effects. . If you want to use the spellchecker, you have to install aspell and the respective language-pack, e.g. aspell-en or aspell-de. Homepage: http://www.inkscape.org/ |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | graphics |
First of all update your system with the command:
sudo apt-get update
Ads
Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.
After downloading the latest package list with the help of above you can run the installation process.
If inkscape is not installed on your compter then the command 'dpkg -L inkscape' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L inkscape Package `inkscape' is not installed. Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents. deepak@deepak-VirtualBox:~$
Installing inkscape:
After system update use the following command to install inkscape:
sudo apt-get install inkscape
Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.
Now we will see the commands for uninstalling the inkscape from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the inkscape following command is used:
sudo apt-get remove inkscape
Following command is used to remove the inkscape package along with its dependencies:
sudo apt-get remove --auto-remove inkscape
This will remove inkscape and all its dependent packages which is no longer needed in the system.
Completely removing inkscape with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge inkscape
or you can use following command also:
sudo apt-get purge --auto-remove inkscape
Above command will remove all the configuration files and data associated with inkscape package. You can can't recover the delete data, so, use this command with care.