Skip to content
This repository has been archived by the owner on Dec 8, 2024. It is now read-only.

doc: added documentation for conda env on Pi #41

Merged
merged 1 commit into from
Sep 4, 2024
Merged
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
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,31 @@ poetry run pip list | grep sitting-desktop-garden
```

## Raspberry Pi Setup
### Environment
Navigate to home directory.
```bash
cd ~
```
Install miniconda.
```bash
curl -o ~/conda-installer.sh \
https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-aarch64.sh &&
bash conda-installer.sh
```
Follow the prompts to install and then restart the shell. Create a new environment with the correct python version.
```bash
conda create -n garden python=3.10
```
Activate the environment.
```bash
conda activate garden
```
Install poetry using the official installer. This will place poetry in its own virtual environment.
```bash
curl -sSL https://install.python-poetry.org | python3 -
```
Follow the steps in [Installation](#installation) to install dependencies.

### Downloading ML Models
From top-level directory.
```bash
Expand Down