Need to know how to install Drush on your Ubuntu Machine? Learn how to do it now.
Here at Ibmi Media, as part of our Server Management Services, we regularly help our customers to perform Software Installation tasks.
Now, let us look into how to install Drush on your Linux Machine.
Drush is a command line shell and Unix scripting interface for Drupal. It makes management of your Drupal web sites easy and in an efficient way.
To install Drush, you need to following the steps below;
To start with the installation of Drush, you need to install its dependencies. But first, update the system by running the command below;
sudo apt-get update && sudo apt-get upgrade
After the update process, run the command below to install the dependencies;
sudo apt-get install php-xml, zip
Next, install curl with the command below;
apt-get install curl php7-cli git
To install Composer, run the command below;
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
To install the latest version of Drush, run the command below;
composer global require drush/drush
Alternatively, you can choose to install a particular version of Drush, lets say version 8, then run the command below;
composer global require drush/drush:8
Now open the file ".bashrc" and add the following information into it;
#path for Drush
export PATH="$HOME/.composer/vendor/bin:$PATH"
Then run source command to recognize the changes made;
source .bashrc
You can verify Drush by running the command below;
drush status
This article will put your through the complete steps you need to take to install Drush on your Ubuntu Machine.