CircleCI CLI installation
The first prerequisite to install CircleCI CLI is to have Docker (https://docs.docker.com/install/) installed. To install Docker on your OS, visit the Docker store at https://store.docker.com/search?type=edition&offering=community and click on the Docker CE
link which is suitable for your OS or cloud service. Follow the installation instructions on their website.
Make sure that Docker is installed by checking the Docker version either on a Windows Command Prompt or an macOS/Linux Terminal application by running a command like this:

Here I have Docker version 18 installed.
Installing CircleCI CLI on macOS/Linux
You will need to run the following command to install CircleCI:
curl -o /usr/local/bin/circleci https://circle-downloads.s3.amazonaws.com/releases/build_agent_wrapper/circleci && chmod +x /usr/local/bin/circleci
Note
You will need to run this in a Terminal application shell session.
Installing nightly build versions of CircleCI through GitHub releases
You...