Getting Started

Learn how to install and use Gemini CLI

Getting Started

Welcome to Gemini CLI! This is a powerful command-line tool that helps you quickly build and manage projects.

Installation

First, make sure you have Node.js 18 or higher installed. Then run the following command:

npm install -g @gemini/cli

Or using yarn:

yarn global add @gemini/cli

Verify Installation

After installation, run the following command to verify the installation was successful:

gemini --version

If you see the version number, the installation was successful!

Create Your First Project

Use the following command to create a new project:

gemini create my-project
cd my-project

This will create a new project directory with a basic template.

Next Steps