Installation Guide

Get started with Conotion AI CLI in minutes. Multiple installation methods for all development environments.

Quick Install (Recommended)

The fastest way to get started with Conotion AI CLI is through npm. This method works on all platforms and automatically handles dependencies.

npm install -g @conotion/cli

💡 Pro Tip

Use the global flag (-g) to access Conotion AI CLI from anywhere in your terminal.

Alternative Installation Methods

Using Yarn

yarn global add @conotion/cli

Using pnpm

pnpm add -g @conotion/cli

Using Bun

bun add -g @conotion/cli

System Requirements

  • Node.js: Version 18.0 or higher
  • Operating System: Windows 10+, macOS 10.15+, Linux (Ubuntu 20.04+)
  • Memory: Minimum 4GB RAM (8GB recommended for large projects)
  • Storage: 500MB free space for installation

Verify Installation

After installation, verify that Conotion AI CLI is working correctly:

conotion --version

You should see output similar to:

@conotion/cli v1.0.0

Initial Configuration

Configure Conotion AI CLI with your preferences:

conotion config setup

This will start an interactive setup wizard to configure your AI preferences, project templates, and integration settings.

Troubleshooting

Permission Issues

If you encounter permission errors on macOS/Linux:

sudo npm install -g @conotion/cli

Node.js Version Issues

Update Node.js using nvm (recommended):

nvm install node
nvm use node

Next Steps