Installing WP-CLI manually
Follow Our Easy, Step-By-Step Instructions To Install WP-CLI On Your Server Or WordPress Hosting Account. It Couldn't Be Easier To Get Started!
This article describes how to manually install the WP-CLI (WordPress Command Line Interface) tool on your hosting account.
Important
By default, WP-CLI is installed on the following hosting packages:
Shared hosting
Reseller hosting
Managed VPS
If you have an account on one of these packages, you do not need to follow the procedures in this article.
Installing WP-CLI manually
To install WP-CLI on your account, follow these steps:
-
Log in to your account using SSH.
-
To download WP-CLI, type the following commands:
cd ~
curl -k -L https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar > wp-cli.phar
- To verify that the WP-CLI file runs correctly, type the following command:
php wp-cli.phar --info
Note
WP-CLI should display PHP version and configuration information. If it does not, you may need to install additional dependencies (such as Phar support) on your server. Consult the documentation for your Linux distribution for more information.
- To set up an alias for the WP-CLI executable, type the following command. Replace username with the account username:
echo 'alias wp="php /home/username/wp-cli.phar"' > ~/.bashrc
- To make the new alias take effect immediately, type the following command:
source ~/.bashrc
- You can now run WP-CLI on your account by simply typing wp.
More Information
For more information about WP-CLI, please visit http://wp-cli.org.
Related Articles
Updated 3 days ago