You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> - _[On Linux only]_ Install [ffmpeg build dependencies](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu#GettheDependencies) and [compile ffmpeg from source with libsvtav1](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu#libsvtav1), and make sure you use the corresponding ffmpeg binary to your install with `which ffmpeg`.
126
129
127
-
Install 🤗 LeRobot:
130
+
### Install LeRobot 🤗
131
+
132
+
#### From Source
133
+
134
+
First, clone the repository and navigate into the directory:
Then, install the library in editable mode. This is useful if you plan to contribute to the code.
142
+
143
+
```bash
144
+
pip install -e .
131
145
```
132
146
133
147
> **NOTE:** If you encounter build errors, you may need to install additional dependencies (`cmake`, `build-essential`, and `ffmpeg libs`). On Linux, run:
@@ -145,6 +159,34 @@ For instance, to install 🤗 LeRobot with aloha and pusht, use:
145
159
pip install -e ".[aloha, pusht]"
146
160
```
147
161
162
+
### Installation from PyPI
163
+
164
+
**Core Library:**
165
+
Install the base package with:
166
+
167
+
```bash
168
+
pip install lerobot
169
+
```
170
+
171
+
_This installs only the default dependencies._
172
+
173
+
**Extra Features:**
174
+
To install additional functionality, use one of the following:
175
+
176
+
```bash
177
+
pip install 'lerobot[all]'# All available features
178
+
pip install 'lerobot[aloha,pusht]'# Specific features (Aloha & Pusht)
179
+
pip install 'lerobot[feetech]'# Feetech motor support
180
+
```
181
+
182
+
_Replace `[...]` with your desired features._
183
+
184
+
**Available Tags:**
185
+
For a full list of optional dependencies, see:
186
+
https://pypi.org/project/lerobot/
187
+
188
+
### Weights & Biases
189
+
148
190
To use [Weights and Biases](https://docs.wandb.ai/quickstart) for experiment tracking, log in with
> - _[On Linux only]_ If you want to bring your own ffmpeg: Install [ffmpeg build dependencies](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu#GettheDependencies) and [compile ffmpeg from source with libsvtav1](https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu#libsvtav1), and make sure you use the corresponding ffmpeg binary to your install with `which ffmpeg`.
42
33
43
-
Install 🤗 LeRobot:
34
+
## Install LeRobot 🤗
35
+
36
+
### From Source
37
+
38
+
First, clone the repository and navigate into the directory:
0 commit comments