📜  gimp apt - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:30:54.574000             🧑  作者: Mango

GIMP and APT - Shell-Bash

Introduction

GIMP is a free and open-source image editing software. APT (Advanced Package Tool) is a command-line tool used to manage software packages in the Debian based operating system. In this article, we will learn how to install GIMP using APT in Shell-Bash.

Installing GIMP using APT

To install GIMP using APT, we need to follow these simple steps:

  1. Open the terminal by pressing Ctrl + Alt + T.

  2. Update the package list using the following command:

    sudo apt update
    
  3. Now, we can install GIMP using the following command:

    sudo apt install gimp
    
  4. Once the installation is complete, we can open GIMP by typing gimp in the terminal or by clicking on the GIMP icon in the applications menu.

Conclusion

In this article, we learned how to install GIMP using APT in Shell-Bash. APT is a very useful tool for managing software packages in the Debian based operating system. With APT, we can easily install, remove, and update software packages on our system.