How To Install codeville on Debian 9
Introduction
In this tutorial we learn how to install codeville on Debian 9.
What is codeville
codeville is:
Codeville is a python-based distributed version control system that began with a novel idea for a merge algorithm and has grown from there. It is designed to be easy to use and scale from small personal projects to very large distributed ones.
There are three methods to install codeville on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install codeville Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install codeville using apt-get by running the following command:
sudo apt-get -y install codeville
Install codeville Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install codeville using apt by running the following command:
sudo apt -y install codeville
Install codeville 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 Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install codeville using aptitude by running the following command:
sudo aptitude -y install codeville
How To Uninstall codeville on Debian 9
To uninstall only the codeville package we can use the following command:
sudo apt-get remove codeville
Uninstall codeville And Its Dependencies
To uninstall codeville and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove codeville
Remove codeville Configurations and Data
To remove codeville configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge codeville
Remove codeville configuration, data, and all of its dependencies
We can use the following command to remove codeville configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge codeville
Dependencies
codeville have the following dependencies:
References
Summary
In this tutorial we learn how to install codeville package on Debian 9 using different package management tools: apt, apt-get and aptitude.