How To Install kdevelop-php-docs on Debian 9

In this tutorial we learn how to install kdevelop-php-docs on Debian 9. kdevelop-php-docs is transitional package for kdevelop-php

Introduction

In this tutorial we learn how to install kdevelop-php-docs on Debian 9.

What is kdevelop-php-docs

kdevelop-php-docs is:

This package is a transitional package to migrate to kdevelop-php.

It can be safely removed after the update.

There are three methods to install kdevelop-php-docs 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 kdevelop-php-docs Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install kdevelop-php-docs

Install kdevelop-php-docs Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install kdevelop-php-docs using apt by running the following command:

sudo apt -y install kdevelop-php-docs

Install kdevelop-php-docs 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 kdevelop-php-docs using aptitude by running the following command:

sudo aptitude -y install kdevelop-php-docs

How To Uninstall kdevelop-php-docs on Debian 9

To uninstall only the kdevelop-php-docs package we can use the following command:

sudo apt-get remove kdevelop-php-docs

Uninstall kdevelop-php-docs And Its Dependencies

To uninstall kdevelop-php-docs and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove kdevelop-php-docs

Remove kdevelop-php-docs Configurations and Data

To remove kdevelop-php-docs configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge kdevelop-php-docs

Remove kdevelop-php-docs configuration, data, and all of its dependencies

We can use the following command to remove kdevelop-php-docs configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge kdevelop-php-docs

Dependencies

kdevelop-php-docs have the following dependencies:

References

Summary

In this tutorial we learn how to install kdevelop-php-docs package on Debian 9 using different package management tools: apt, apt-get and aptitude.