To install GIMP on a FreeBSD system, you can use the pkg
package manager or the ports
system.
Here’s how to install GIMP using pkg
:
- Update the package repository: To ensure that you have the latest packages available, run the following command:
sudo pkg update
- Install GIMP: Use the following command to install GIMP:
sudo pkg install gimp
Once the installation is complete, you can launch GIMP from the command line using the gimp
command.
Here’s how to install GIMP using the ports
system:
- Install the
ports
tree: To install theports
tree, use the following command:
sudo portsnap fetch
sudo portsnap extract
- Install GIMP: To install GIMP, go to the
/usr/ports/graphics/gimp
directory and run the following command:
sudo make install clean
This will compile and install GIMP on your system.
Once the installation is complete, you can launch GIMP from the command line using the gimp
command.