From 57ae5098236d3a074c64f3340089a70a151c6922 Mon Sep 17 00:00:00 2001 From: Simon Alibert <75076266+aliberts@users.noreply.github.com> Date: Thu, 6 Mar 2025 09:43:27 +0100 Subject: [PATCH] Revert "docs: update installation instructions to use uv instead of conda" (#827) --- README.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 454c7e5d..9debf9d1 100644 --- a/README.md +++ b/README.md @@ -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