Installation Guide

Installation Methods

Since installation methods differ depending on your operating system, we’ve outlined the best approaches for each. On Ubuntu, you can install Pinta through your package manager, ensuring a quick and simple setup. For *BSD users, we provide detailed instructions tailored to your environment. If you prefer using the tarball, we've included steps to build and run Pinta from source. Follow the section that matches your system for a smooth installation process.

Installing Pinta on Ubuntu

Install Pinta from Default Ubuntu Repository

Pinta is available in the default Ubuntu repository. You can install it using:

But Pinta from the default Ubuntu repository can be not be up to date, so you may want to install a more recent version of Pinta from the XtraDeb repository. See below.

Install Pinta from XtraDeb Repository Using Terminal (for Advanced Users)

Open terminal with CTRL+ALT+T

Add the XtraDeb repository:

          
            wget https://launchpad.net/~xtradeb/+archive/ubuntu/apps/+files/xtradeb-apt-source_0.4_all.deb
            sudo apt install ./xtradeb-apt-source_0.4_all.deb
            rm ./xtradeb-apt-source_0.4_all.deb
          
        

Update system package lists:

sudo apt-get update

Install Pinta:

sudo apt-get install pinta

Installing Pinta on *BSD

FreeBSD and DragonFly BSD

Pinta is available in FreeBSD and DragonFly BSD ports.

You can install the binary package using:

sudo pkg install pinta

or compile it using:

cd /usr/ports/graphics/pinta && sudo make install clean

OpenBSD

Pinta is available in OpenBSD ports.

You can install the binary package using:

sudo pkg_add pinta

or compile it using:

cd /usr/ports/graphics/pinta && sudo make install

Using the Tarball

A tarball is like a ZIP file. It is a single file with many files inside it. Like a ZIP file, it has to be extracted before you can use the files in them.

First, you must download the tarball. Head on over to the Download page and click on the Download link under Tarball. Download the file wherever you’d like, just be sure you remember where.

Second, we need to extract it. You can either use your mouse to right-click on the tarball file and select ‘Extract here’ or you can use the terminal if you are more comfortable with that.

Here is the command to extract the files via the terminal, be sure you are in the same folder as the tarball:

tar -zxf pinta-VERSION.tar.gz