From the course: Web Servers and APIs using C++

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Installing the Heroku CLI

Installing the Heroku CLI - C++ Tutorial

From the course: Web Servers and APIs using C++

Start my 1-month free trial

Installing the Heroku CLI

- [Instructor] In order to create and deploy your app, you must have the Heroku CLI installed. To be completely clear, the CLI is installed on your host machine and not in a container. On Windows, there are two installers, one for 32-bit Windows, and the other for 64-bit. Choose the 64-bit one. Docker does not support 32-bit machines. On the Mac, you can download a package to install the CLI, but it is easier to install it with Homebrew if you have it. Let's do that. From the terminal, type brew install heroku/brew/heroku and type enter. Give it a few seconds to install. We can validate the installation by typing the following from the terminal, heroku --version. It returns the version number of the CLI. Your version number may not be the same as mine, which was 7.0.86 at the time of recording.

Contents