Skip to content
Merged
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
3 changes: 2 additions & 1 deletion documentation/docs/community/contribute/tips-and-tricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Start by [installing WSL (Ubuntu)](https://learn.microsoft.com/en-us/windows/wsl
Because of a small incompatibilty between Windows and Linux; we recommend cloning the repo "in WSL" but if you prefer keeping your git clone "in Windows", here are other options:
* [Git line endings](https://learn.microsoft.com/en-us/windows/wsl/tutorials/wsl-git#git-line-endings)
* [Visual Studio Code WSL extension](https://code.visualstudio.com/docs/remote/wsl)
*

Then follow the Ubuntu instructions below.
</details>

Expand Down Expand Up @@ -83,6 +83,7 @@ poetry install --no-root
Run live previewer:

```sh
cd documentation
Comment thread
ethanjli marked this conversation as resolved.
poetry run poe preview
```

Expand Down
2 changes: 1 addition & 1 deletion software/distro/setup/ci-record-version.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -eu
# This script records OS installation versioning information in the same way as the
# install.planktoscope.community/distro.sh script does. To invnoke it, you must set the following
# install.planktoscope.community/distro.sh script does. To invoke it, you must set the following
# environment variables:
# REPO (the repo used for setup, e.g. github.com/PlanktoScope/PlanktoScope)
# VERSION_QUERY (the version query, e.g. a commit hash)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ esac
sudo -E apt-get install -y -o Dpkg::Progress-Fancy=0 \
git python3-pip python3-venv

## Upgrade python3-libcamera to solve an issue in Raspberry Pi OS bookworm-2024-11-19
## https://github.com/raspberrypi/picamera2/issues/1229#issuecomment-2772493538
sudo -E apt-get install -y -o Dpkg::Progress-Fancy=0 --only-upgrade \
python3-libcamera

Comment thread
ethanjli marked this conversation as resolved.
# Suppress keyring dialogs when setting up the PlanktoScope distro on a graphical desktop
# (see https://github.com/pypa/pip/issues/7883)
export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring
Expand Down