How to Install Inkscape on FunOS

Inkscape is a powerful open-source vector graphics editor that’s widely used by designers, illustrators, and digital artists around the world. Whether you want to create icons, logos, technical diagrams, or complex illustrations, Inkscape provides professional-grade tools while remaining completely free. On FunOS, you can install Inkscape easily using the Ubuntu repositories or directly from the official Inkscape Stable PPA to get the latest version.

What is Inkscape?

Inkscape is a cross-platform vector graphics application similar to Adobe Illustrator or CorelDRAW, but it’s entirely open-source and community-driven. It supports a wide range of file formats including SVG, PDF, EPS, and PNG. Inkscape offers advanced features such as path editing, node manipulation, layers, text on paths, and filters. It’s a popular choice among Linux users because it integrates seamlessly with open-source workflows, making it perfect for both beginners and professionals who want to create scalable, high-quality artwork.

How to Install Inkscape on FunOS

There are two methods to install Inkscape on FunOS. You can install it from the Ubuntu repositories for a stable version included with your system, or from the Inkscape Stable PPA for the most up-to-date release.

Method 1: Installing from the Ubuntu Repositories

Step 1: Open a Terminal

There are three ways to open a Terminal in FunOS:

  • Click Menu in the lower-left corner of the screen, then click Terminal
  • Click the Terminal icon in the Tray
  • Press Ctrl + Alt + T

Step 2: Update the Package List

Before installing any package, it’s a good idea to update your system’s package list to ensure you get the latest available version:

sudo apt update

Step 3: Install Inkscape

Run the following command to install Inkscape:

sudo apt install inkscape

Step 4: Reload the Menu

After installation, reload the menu so that Inkscape appears:

  • Click the Menu button in the lower-left corner
  • Click Reload menu

Method 2: Installing from the Inkscape Stable PPA

If you want to install the latest stable version maintained by the Inkscape Developers team, use the official PPA.

Step 1: Open a Terminal

You can open a Terminal in one of the following ways:

  • Click Menu in the lower-left corner of the screen, then click Terminal
  • Click the Terminal icon in the Tray
  • Press Ctrl + Alt + T

Step 2: Add the Inkscape Stable PPA

This PPA is maintained by the Inkscape Developers team:
https://launchpad.net/~inkscape.dev

Add it with the following command:

sudo add-apt-repository ppa:inkscape.dev/stable

Step 3: Update the Package List

Update your package list to include the new repository:

sudo apt update

Step 4: Install Inkscape

Now install Inkscape using:

sudo apt install inkscape

Step 5: Reload the Menu

After installation, refresh the menu to make Inkscape appear:

  • Click the Menu button in the lower-left corner
  • Click Reload menu

Launching Inkscape

To open Inkscape after installation:

  • Click the Menu button in the lower-left corner
  • Navigate to the Graphics category
  • Click Inkscape

You can now start creating and editing vector graphics right away.

How to Uninstall Inkscape on FunOS

If you no longer need Inkscape or want to reinstall it from scratch, you can easily remove it from your FunOS system. The uninstallation process depends on how you installed it—either from the Ubuntu repositories or from the Inkscape Stable PPA.

Uninstall Inkscape Installed from the Ubuntu Repositories

Step 1: Open a Terminal

You can open a Terminal in one of the following ways:

  • Click Menu in the lower-left corner of the screen, then click Terminal
  • Click the Terminal icon in the Tray
  • Press Ctrl + Alt + T

Step 2: Remove Inkscape

Run the following command to uninstall Inkscape and remove its configuration files:

sudo apt remove --purge inkscape

Step 3: Remove Any Unused Dependencies

After removing Inkscape, clean up any unused dependencies that are no longer needed:

sudo apt autoremove --purge

Step 4: Remove User Data (Optional)

If you want to completely remove your personal Inkscape settings, delete its configuration directory:

rm -rf $HOME/.config/inkscape

Step 5: Reload the Menu

Finally, refresh the menu to remove Inkscape from the application list:

  • Click the Menu button in the lower-left corner
  • Click Reload menu

Uninstall Inkscape Installed from the Inkscape Stable PPA

Step 1: Open a Terminal

You can open a Terminal in one of the following ways:

  • Click Menu in the lower-left corner of the screen, then click Terminal
  • Click the Terminal icon in the Tray
  • Press Ctrl + Alt + T

Step 2: Remove Inkscape

Remove Inkscape and its configuration files:

sudo apt remove --purge inkscape

Step 3: Remove Any Unused Dependencies

Clean up any remaining unused packages:

sudo apt autoremove --purge

Step 4: Remove the Inkscape Stable PPA

If you added the official Inkscape PPA earlier, remove it to revert to your default repositories:

sudo add-apt-repository --remove ppa:inkscape.dev/stable

Step 5: Update the Package List

Refresh your package index to reflect the repository changes:

sudo apt update

Step 6: Remove User Data (Optional)

Delete Inkscape’s user configuration folder if you want to remove all personal preferences:

rm -rf $HOME/.config/inkscape

Step 7: Reload the Menu

After uninstallation, refresh the menu:

  • Click the Menu button in the lower-left corner
  • Click Reload menu

Conclusion

Inkscape is one of the best open-source tools for creating and editing vector graphics, offering features comparable to commercial software. On FunOS, installing or removing Inkscape is simple and can be done through either the default repositories or the official Inkscape Stable PPA. Whether you’re a graphic designer, illustrator, or hobbyist, Inkscape provides a robust and flexible platform for your creative projects—while maintaining the stability and lightweight performance that FunOS users enjoy.

Leave a Reply

Your email address will not be published. Required fields are marked *