Skip to content

Commit 57ae509

Browse files
authored
Revert "docs: update installation instructions to use uv instead of conda" (#827)
1 parent 5d24ce3 commit 57ae509

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

README.md

+4-9
Original file line numberDiff line numberDiff line change
@@ -92,20 +92,15 @@ git clone https://github.com/huggingface/lerobot.git
9292
cd lerobot
9393
```
9494

95-
Create a virtual environment with Python 3.10 and activate it using [`uv`](https://github.com/astral-sh/uv):
95+
Create a virtual environment with Python 3.10 and activate it, e.g. with [`miniconda`](https://docs.anaconda.com/free/miniconda/index.html):
9696
```bash
97-
# Install uv if you haven't already
98-
curl -LsSf https://astral.sh/uv/install.sh | sh
99-
100-
# Create and activate virtual environment with Python 3.10
101-
uv venv .venv --python=3.10
102-
source .venv/bin/activate # On Unix/macOS
103-
# .venv\Scripts\activate # On Windows
97+
conda create -y -n lerobot python=3.10
98+
conda activate lerobot
10499
```
105100

106101
Install 🤗 LeRobot:
107102
```bash
108-
uv pip install -e .
103+
pip install -e .
109104
```
110105

111106
> **NOTE:** Depending on your platform, If you encounter any build errors during this step

0 commit comments

Comments
 (0)