Skip to main content

Installation & Setup

This guide will help you install and configure OpenHuman in your local environment.

System Requirements

  • Node.js >= 18.0.0
  • npm >= 9.0.0 or yarn >= 1.22.0
  • 4GB+ RAM
  • 2GB+ available disk space

Installation Methods

npm install openhuman-sdk

Using yarn

yarn add openhuman-sdk

Using pnpm

pnpm add openhuman-sdk

Verify Installation

After installation, run the following command to verify:

npx openhuman --version

If you see a version number, the installation was successful.

Initialize a Project

Create a new OpenHuman project:

npx openhuman init my-project
cd my-project

This creates a new project directory with example code.

Next Steps