You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
726 B
42 lines
726 B
---
|
|
title: "Installation"
|
|
description: "Get your 01 up and running"
|
|
---
|
|
|
|
## Install 01
|
|
|
|
To install the 01 software
|
|
|
|
```bash
|
|
# Clone the repo and navigate into the 01OS directory
|
|
git clone https://github.com/OpenInterpreter/01.git
|
|
```
|
|
|
|
## Run the 01
|
|
|
|
In order to run 01 on your computer, use [Poetry](https://python-poetry.org/docs/#installing-with-the-official-installer).
|
|
|
|
Navigate to the project's software directory:
|
|
|
|
```bash
|
|
cd software
|
|
```
|
|
|
|
Install your project along with its dependencies in a virtual environment managed by Poetry.
|
|
|
|
```bash
|
|
poetry install
|
|
```
|
|
|
|
Run your local version of 01 with:
|
|
|
|
```bash
|
|
poetry run 01
|
|
```
|
|
|
|
Use 01 with your <a href="/hardware/01-light">01 Light</a>
|
|
|
|
```bash
|
|
poetry run 01 --server
|
|
```
|