Skip to content

Commit 98662e5

Browse files
chore(install): use miniforge instead of miniconda (#2249)
Co-authored-by: Silvio Traversaro <[email protected]>
1 parent 4d8f242 commit 98662e5

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Follow these steps to start contributing:
137137
4. for development, we advise to use a tool like `poetry` or `uv` instead of just `pip` to easily track our dependencies.
138138
Follow the instructions to [install poetry](https://python-poetry.org/docs/#installation) (use a version >=2.1.0) or to [install uv](https://docs.astral.sh/uv/getting-started/installation/#installation-methods) if you don't have one of them already.
139139

140-
Set up a development environment with conda or miniconda:
140+
Set up a development environment with conda:
141141

142142
```bash
143143
conda create -y -n lerobot-dev python=3.10 && conda activate lerobot-dev

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ LeRobot works with Python 3.10+ and PyTorch 2.2+.
104104

105105
### Environment Setup
106106

107-
Create a virtual environment with Python 3.10 and activate it, e.g. with [`miniconda`](https://docs.anaconda.com/free/miniconda/index.html):
107+
Create a virtual environment with Python 3.10 and activate it, e.g. with [`miniforge`](https://conda-forge.org/download/):
108108

109109
```bash
110110
conda create -y -n lerobot python=3.10
111111
conda activate lerobot
112112
```
113113

114-
When using `miniconda`, install `ffmpeg` in your environment:
114+
When using `conda`, install `ffmpeg` in your environment:
115115

116116
```bash
117117
conda install ffmpeg -c conda-forge

docs/source/installation.mdx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Installation
22

3+
## Install [`miniforge`](https://conda-forge.org/download/)
4+
5+
```bash
6+
wget "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
7+
bash Miniforge3-$(uname)-$(uname -m).sh
8+
```
9+
310
## Environment Setup
411

5-
Create a virtual environment with Python 3.10, using [`Miniconda`](https://docs.anaconda.com/miniconda/install/#quick-command-line-install)
12+
Create a virtual environment with Python 3.10, using conda:
613

714
```bash
815
conda create -y -n lerobot python=3.10
@@ -14,7 +21,7 @@ Then activate your conda environment, you have to do this each time you open a s
1421
conda activate lerobot
1522
```
1623

17-
When using `miniconda`, install `ffmpeg` in your environment:
24+
When using `conda`, install `ffmpeg` in your environment:
1825

1926
```bash
2027
conda install ffmpeg -c conda-forge

0 commit comments

Comments
 (0)