Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ To build the documentation locally:
Or a Conda environment:

```bash
conda create -yn executorch python=3.10.0 && conda activate executorch
conda create -yn executorch python=3.10 && conda activate executorch
```

1. Install dependencies:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/raspberry_pi_llama_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ cd executorch

```bash
# Create conda environment
conda create -yn executorch python=3.10.0
conda create -yn executorch python=3.10
conda activate executorch

# Upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion docs/source/using-executorch-building-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ portability details.
```bash
git clone -b viable/strict https://github.com/pytorch/executorch.git
cd executorch
conda create -yn executorch python=3.10.0
conda create -yn executorch python=3.10
conda activate executorch
```

Expand Down
2 changes: 1 addition & 1 deletion examples/raspberry_pi/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ setup_environment() {
# Check if conda is available
if command -v conda &> /dev/null; then
log_info "Creating conda environment..."
conda create -yn executorch python=3.10.0
conda create -yn executorch python=3.10
eval "$(conda shell.bash hook)"
conda activate executorch
log_success "Created and activated conda environment: executorch"
Expand Down
Loading