How To Install smartshine on Ubuntu 18.04

In this tutorial we learn how to install smartshine on Ubuntu 18.04. smartshine is Automatic photo adjusting software

Introduction

In this tutorial we learn how to install smartshine on Ubuntu 18.04.

What is smartshine

smartshine is:

The program analyzes the histogram of the image and tries to set the most optimal black and white point of the image. Removes the veiled effect caused by the shifted colors, adjusts the color balance and saturation, and corrects the gamma factor.

There are three methods to install smartshine on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install smartshine Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install smartshine using apt-get by running the following command:

sudo apt-get -y install smartshine

Install smartshine Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install smartshine using apt by running the following command:

sudo apt -y install smartshine

Install smartshine Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install smartshine using aptitude by running the following command:

sudo aptitude -y install smartshine

How To Uninstall smartshine on Ubuntu 18.04

To uninstall only the smartshine package we can use the following command:

sudo apt-get remove smartshine

Uninstall smartshine And Its Dependencies

To uninstall smartshine and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove smartshine

Remove smartshine Configurations and Data

To remove smartshine configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge smartshine

Remove smartshine configuration, data, and all of its dependencies

We can use the following command to remove smartshine configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge smartshine

References

Summary

In this tutorial we learn how to install smartshine package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.