How To Install cakephp-scripts on Debian 9

In this tutorial we learn how to install cakephp-scripts on Debian 9. cakephp-scripts is rapid application development framework for PHP (scripts)

Introduction

In this tutorial we learn how to install cakephp-scripts on Debian 9.

What is cakephp-scripts

cakephp-scripts is:

CakePHP is a flexible model-view-controller rapid application development framework for PHP inspired by Ruby on Rails.

This package contains the bake.php and acl.php scripts for creating (or “baking”) CakePHP applications and modifying Access Control Lists.

There are three methods to install cakephp-scripts 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 cakephp-scripts Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install cakephp-scripts

Install cakephp-scripts Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install cakephp-scripts

Install cakephp-scripts 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 cakephp-scripts using aptitude by running the following command:

sudo aptitude -y install cakephp-scripts

How To Uninstall cakephp-scripts on Debian 9

To uninstall only the cakephp-scripts package we can use the following command:

sudo apt-get remove cakephp-scripts

Uninstall cakephp-scripts And Its Dependencies

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

sudo apt-get -y autoremove cakephp-scripts

Remove cakephp-scripts Configurations and Data

To remove cakephp-scripts configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge cakephp-scripts

Remove cakephp-scripts configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge cakephp-scripts

Dependencies

cakephp-scripts have the following dependencies:

References

Summary

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