Autorun AI Docs

Installation

Learn how to install and set up Autorun

Installation

Get started with Autorun by following this comprehensive installation guide.

Prerequisites

Before you begin, ensure you have the following installed:

  • Node.js 18 or higher
  • npm or yarn package manager
  • A code editor (we recommend VS Code)
Important

Make sure you have administrative privileges to install packages globally.

Installation Steps

1. Install the CLI

Install the Autorun CLI globally using npm:

npm install -g @autorun/cli

Or using yarn:

yarn global add @autorun/cli

2. Verify Installation

Check that the installation was successful:

autorun --version

You should see the current version number displayed.

Video Tutorial

Here's a quick video tutorial showing the installation process:

Configuration

After installation, initialize your first project:

autorun init my-first-project
cd my-first-project

This will create a new directory with the basic project structure:

my-first-project/
├── autorun.config.js
├── workflows/
│   └── example.yaml
└── README.md

Your project is now set up! Continue to the Quick Start Guide to create your first workflow.

Troubleshooting

If you encounter any issues during installation:

  1. Permission Errors: Try using sudo on macOS/Linux or run your terminal as Administrator on Windows
  2. Network Issues: Check your internet connection and npm registry settings
  3. Version Conflicts: Make sure you're using a compatible Node.js version
Need Help?

Join our Discord community or check out our FAQ.