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:
- Click on Ubuntu Software Center from the Launcher (left side icon panel).
- At the top right input box, type in: Pinta and press Enter.
- Pinta is displayed in the list below. Click on it and click the Install button.
But Pinta from the default Ubuntu repository can be an old version, so you may want to install a more recent version of Pinta from the Pinta maintainers PPA repository. See below.
Install Pinta from Pinta Maintainers PPA Repository Using Terminal (for Advanced Users)
Open terminal with CTRL+ALT+T
First, install the latest version of Mono (version 6.10 or higher is strongly recommended).
Add Pinta stable PPA repository:
sudo add-apt-repository ppa:pinta-maintainers/pinta-stable
Note: Instead of pinta-stable
you can add pinta-daily
if you like to test the latest and greatest Pinta, but it may be buggy.
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