DEV Community

Cover image for How to Update Gemini CLI to the Latest Version
Vladislav Guzey
Vladislav Guzey

Posted on

How to Update Gemini CLI to the Latest Version

The Gemini CLI is an open-source command-line tool that brings the power of Gemini (by Google) to your terminal. Keeping it up to date means you’ll get the latest features, fixes, and better performance. In this simple tutorial, I'm going to show how to update your Gemini CLI to the latest version.

How to Update Gemini CLI

Follow these simple steps depending on how you installed it.

1. Check your Gemini CLI current version

Open your terminal and type:

gemini --version
Enter fullscreen mode Exit fullscreen mode

Check your current Gemini CLI version

2. Update if you installed via npm (globally)

If you installed the CLI globally using npm, run:

npm install -g @google/gemini-cli@latest
Enter fullscreen mode Exit fullscreen mode

Or you can use:

npm update -g @google/gemini-cli
Enter fullscreen mode Exit fullscreen mode

3. If you use npx (no global install)

If you run the CLI directly via npx, you don’t need to update manually. Just run:

npx https://github.com/google-gemini/gemini-cli
Enter fullscreen mode Exit fullscreen mode

4. Verify the update

After updating, run the command below to be sure you’re on the new version.

gemini --version
Enter fullscreen mode Exit fullscreen mode

Then test a simple command like:

gemini --help
Enter fullscreen mode Exit fullscreen mode

Conclusion

Updating the Gemini CLI is quick and keeps your tools sharp. The key steps: check version, update via npm (or use npx), and verify the update.

For more in-depth details and tutorials about Gemini please check these links:

Top comments (0)