Skip to content

How to Install WP-CLI

This text and video Quick Guide covers how to install WP-CLI, the WordPress command line interface.

What WP-CLI Is and Why to Install WP-CLI

First off, WP-CLI is a command line utility. We’ve written a number of articles about how to do various things on the Unix command line. The highlight articles are:

For a WordPress developer, a lot of this is nice to know but not super-useful—without a system that lets us do WordPress development in the command line. WP-CLI is exactly that system.

WP-CLI is a Unix command line package that really makes it worth figuring out the command line. It makes doing lots of little administration tasks on you WordPress server so much easier.

We’ve made an entire free course on using WP-CLI:

https://wpshout.com/course-working-command-line-wp-cli/

But the first thing you’ll need to understand is how to install WP-CLI itself. The video and the text below will show you how.

Here’s the video:

And here’s a text guide to installing WP-CLI:

How to Install WP-CLI  (and What Each Step Does)

  1. Open a command prompt. Probably BASH.
  2. Paste in the command: curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar and hit enter. This will download the file from the URL onto your computer and into your current directory.
  3. Make sure the above command worked via a run of `php wp-cli.phar –info`. If you get output, keep going. If not, redo step 2. (We’re just running WP-CLI here, with one of it’s simplest commands.)
  4. Make the phar executable via `chmod +x wp-cli.phar`. CHMOD is the method to change permissions on a file, we need it be executable so that we can invoke it without calling PHP first (as we did in step 3).
  5. Rename and move the executable into your path (see the end of my Unix concepts article for details), so that you can type wp to run the command. sudo mv wp-cli.phar /usr/local/bin/wp.
  6. Confirm everything worked by running wp --info.

And that’s it! Now that you’ve got WP-CLI installed, have a look at our free course on WP-CLI. Happy hacking!

Yay! 🎉 You made it to the end of the article!
David Hayes
Share:

4 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments
Working With The Command Line and WP-CLI – WPShout
June 6, 2017 12:12 pm

[…] Installing WP-CLI […]

Anatomy of a WP-CLI Command: wp database import | WPShout
May 9, 2017 11:00 am

[…] Quick Guide: Installing WP-CLI […]

The What, How and Why of WP-CLI: WordPress in Your Terminal | WPShout
January 31, 2017 10:32 am

[…] into your terminal is doing. If you’re looking for that check out our latest Quick Guide: Installing WP-CLI. Here’s its […]

The What, How and Why of WP-CLI: WordPress in Your Terminal | | Null Shop
January 31, 2017 10:13 am

[…] Installing WP-CLI […]

Or start the conversation in our Facebook group for WordPress professionals. Find answers, share tips, and get help from other WordPress experts. Join now (it’s free)!