File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -92,15 +92,20 @@ git clone https://github.com/huggingface/lerobot.git
92
92
cd lerobot
93
93
```
94
94
95
- Create a virtual environment with Python 3.10 and activate it, e.g. with [ ` miniconda ` ] ( https://docs.anaconda. com/free/miniconda/index.html ) :
95
+ Create a virtual environment with Python 3.10 and activate it using [ ` uv ` ] ( https://github. com/astral-sh/uv ) :
96
96
``` bash
97
- conda create -y -n lerobot python=3.10
98
- conda activate lerobot
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
99
104
```
100
105
101
106
Install 🤗 LeRobot:
102
107
``` bash
103
- pip install -e .
108
+ uv pip install -e .
104
109
```
105
110
106
111
> ** NOTE:** Depending on your platform, If you encounter any build errors during this step
You can’t perform that action at this time.
0 commit comments