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.
31 lines
517 B
31 lines
517 B
6 months ago
|
---
|
||
6 months ago
|
title: "Install"
|
||
6 months ago
|
description: "Get your 01 up and running"
|
||
|
---
|
||
|
|
||
|
## Install 01
|
||
|
|
||
6 months ago
|
To install the 01 software:
|
||
6 months ago
|
|
||
|
```bash
|
||
5 months ago
|
# Clone the repo and navigate into the 01 directory
|
||
6 months ago
|
git clone https://github.com/OpenInterpreter/01.git
|
||
4 months ago
|
cd 01
|
||
6 months ago
|
```
|
||
|
|
||
|
## Run the 01
|
||
|
|
||
|
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
|
||
|
```
|
||
|
|
||
4 months ago
|
Now you should be ready to [run your 01](/software/server/introduction).
|