Pinta installation on Ubuntu 25.10 (its so easy) #2077
ryan-de-boer
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Ubuntu 25.10 and above can build and run pinta so easy, no more gtk errors.
Installing dependencies
cd ~
sudo apt install git
git --version
git clone https://github.com/PintaProject/Pinta.git
Dot Net 8 SDK
You might be able to find an easier way to install but I had to use the script:
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
chmod +x dotnet-install.sh
./dotnet-install.sh -c 8.0 --install-dir ~/.dotnet
echo 'export PATH=$HOME/.dotnet:$PATH' >> ~/.bashrc
source ~/.bashrc
dotnet --version
Building
"cd Pinta"
dotnet build -c Release
Running
dotnet run --project Pinta
Beta Was this translation helpful? Give feedback.
All reactions