Install the CLI
When installing the Prismic CLI (command line interface), if you haven't already, you will need to make sure you're using the latest version (Check you version by running prismic --version and compare it to the latest version released on npm). Launch the terminal (command prompt or similar on Windows) and run the following command.
- npm
- yarn
npm install -g prismic-cli@3.8.3-beta.0
yarn global add prismic-cli@3.8.3-beta.0
Sudo command
Sometimes it's possible that a global (-g) command like this doesn't work because of permission levels on your machine.
If that's the case for you, try executing the sudo command below:
- npm
- yarn
sudo npm install -g prismic-cli@3.8.3-beta.0
sudo yarn global add prismic-cli@3.8.3-beta.0
Once you've ran the command you can confirm if your are using the correct version by running the following command:
prismic --version
You'll want to see the latest version released on npm. If you run into any problems try uninstalling and reinstalling the CLI.