Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

install gimp with homebrew?

Tags:

homebrew

gimp

I worked with gimp a while back when users had to install x11. I want to install it again for a project requiring image editing. I see there are a lot of enhancements to the installation process. It seems installing x11 is not required anymore. I am so used to brew everything. Is there a way to install gimp with homebrew?

like image 543
apadana Avatar asked Apr 05 '16 18:04

apadana


People also ask

How do I install GIMP on my Mac?

An easy way to compile and install GIMP and other great Free software on your Mac is by using Macports. The installer allows you to choose from a large directory of packages. To install gimp using Macports, you simply do sudo port install gimp once you have Macports installed.

How do I get GIMP on Linux?

Install GIMP From the Software Center To start, launch Ubuntu Software from the Applications menu and search for 'gimp. ' Click on Install to download the GIMP package, and the system will get it up and running in no time.


2 Answers

Install Gimp

brew install gimp

This will install Gimp via Homebrew Cask automatically.

2020 edit: "brew cask install" is no longer necessary; brew will automatically tap casks when appropriate.

like image 190
pat Avatar answered Oct 18 '22 01:10

pat


I tried to install using @pat's answer. It did not work. The solution provided by @Gianfranco is the only one that did work:

brew tap caskroom/cask
brew install Caskroom/cask/gimp 

The result is:

brew tap caskroom/cask

==> Tapping caskroom/cask
Cloning into '/usr/local/Homebrew/Library/Taps/caskroom/homebrew-cask'...
remote: Counting objects: 3730, done.
remote: Compressing objects: 100% (3706/3706), done.
remote: Total 3730 (delta 39), reused 588 (delta 20), pack-reused 0
Receiving objects: 100% (3730/3730), 1.26 MiB | 1.39 MiB/s, done.
Resolving deltas: 100% (39/39), done.
Checking connectivity... done.
Tapped 0 formulae (3,738 files, 4.0MB)

And:

brew install Caskroom/cask/gimp 

==> brew cask install Caskroom/cask/gimp 
==> Downloading https://download.gimp.org/pub/gimp/v2.8/osx/gimp-2.8.22-x86_64.dmg
######################################################################## 100.0%
==> Verifying checksum for Cask gimp
==> Installing Cask gimp
==> Moving App 'GIMP.app' to '/Applications/GIMP.app'.
🍺  gimp was successfully installed!
like image 13
Doron Yakovlev Golani Avatar answered Oct 18 '22 03:10

Doron Yakovlev Golani