Revert "docs: update installation instructions to use uv instead of conda" (#827)
This commit is contained in:
parent
5d24ce3160
commit
57ae509823
13
README.md
13
README.md
|
@ -92,20 +92,15 @@ git clone https://github.com/huggingface/lerobot.git
|
||||||
cd lerobot
|
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
|
```bash
|
||||||
# Install uv if you haven't already
|
conda create -y -n lerobot python=3.10
|
||||||
curl -LsSf https://astral.sh/uv/install.sh | sh
|
conda activate lerobot
|
||||||
|
|
||||||
# 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
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Install 🤗 LeRobot:
|
Install 🤗 LeRobot:
|
||||||
```bash
|
```bash
|
||||||
uv pip install -e .
|
pip install -e .
|
||||||
```
|
```
|
||||||
|
|
||||||
> **NOTE:** Depending on your platform, If you encounter any build errors during this step
|
> **NOTE:** Depending on your platform, If you encounter any build errors during this step
|
||||||
|
|
Loading…
Reference in New Issue