Revert "docs: update installation instructions to use uv instead of conda" (#827)

This commit is contained in:
Simon Alibert 2025-03-06 09:43:27 +01:00 committed by GitHub
parent 5d24ce3160
commit 57ae509823
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 9 deletions

View File

@ -92,20 +92,15 @@ git clone https://github.com/huggingface/lerobot.git
cd lerobot
```
Create a virtual environment with Python 3.10 and activate it using [`uv`](https://github.com/astral-sh/uv):
Create a virtual environment with Python 3.10 and activate it, e.g. with [`miniconda`](https://docs.anaconda.com/free/miniconda/index.html):
```bash
# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | sh
# Create and activate virtual environment with Python 3.10
uv venv .venv --python=3.10
source .venv/bin/activate # On Unix/macOS
# .venv\Scripts\activate # On Windows
conda create -y -n lerobot python=3.10
conda activate lerobot
```
Install 🤗 LeRobot:
```bash
uv pip install -e .
pip install -e .
```
> **NOTE:** Depending on your platform, If you encounter any build errors during this step