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

Commit

Permalink
Merge pull request #41 from LimaoC/mitch-pi-env-docs
Browse files Browse the repository at this point in the history
doc: added documentation for conda env on Pi
  • Loading branch information
MitchellJC authored Sep 4, 2024
2 parents 8b25034 + d128649 commit 4b3e06a
Showing 1 changed file with 25 additions and 0 deletions.
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

0 comments on commit 4b3e06a

Please sign in to comment.