How To Install deepin-album on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 368 words
Introduction
In this tutorial we learn how to install deepin-album
on Ubuntu.
What is deepin-album
deepin-album is:
Deepin-album is a fashion photo manager for viewing and organizing pictures. deepin-album supports command line, mouse drag method to import photos. deepin-album supports single browsing and timeline browsing modes.
There are three methods to install deepin-album
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install deepin-album Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install deepin-album
using apt-get
by running the following command:
sudo apt-get -y install deepin-album
Install deepin-album Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install deepin-album
using apt
by running the following command:
sudo apt -y install deepin-album
Install deepin-album 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 deepin-album
using aptitude
by running the following command:
sudo aptitude -y install deepin-album
How To Uninstall deepin-album on Ubuntu
To uninstall only the deepin-album
package we can use the following command:
sudo apt-get remove deepin-album
Uninstall deepin-album And Its Dependencies
To uninstall deepin-album
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove deepin-album
Remove deepin-album Configurations and Data
To remove deepin-album
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge deepin-album
Remove deepin-album configuration, data, and all of its dependencies
We can use the following command to remove deepin-album
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge deepin-album
Dependencies
deepin-album have the following dependencies:
- libc6
- libdtkcore5
- libdtkgui5
- libdtkwidget5
- libfreeimage3
- libgcc-s1
- libgio-qt0
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5printsupport5
- libqt5sql5
- libqt5svg5
- libqt5widgets5
- libstdc++6
- libudisks2-qt5-0
References
Summary
In this tutorial we learn how to install deepin-album
package on Ubuntu using different package management tools: apt, apt-get and aptitude.