Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

camera: Fix wrong package name for installation instructions #3281

Merged
merged 1 commit into from
Nov 15, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ NOTE: When building on a Raspberry Pi with 1GB or less of RAM, there is a risk t
You can rebuild `rpicam-apps` _without_ first rebuilding the whole of `libcamera` and `libepoxy`. If you do not need support for the GLES/EGL preview window then `libepoxy` can be omitted entirely. Mostly this will include Raspberry Pi OS Lite users, and they must be sure to use `-Denable_egl=false` when running `meson setup` later. These users should run:

----
sudo apt install -y rpicam-dev libjpeg-dev libtiff5-dev
sudo apt install -y libcamera-dev libjpeg-dev libtiff5-dev
----

All other users should execute:

----
sudo apt install -y rpicam-dev libepoxy-dev libjpeg-dev libtiff5-dev
sudo apt install -y libcamera-dev libepoxy-dev libjpeg-dev libtiff5-dev
----

If you want to use the Qt preview window, please also execute
Expand Down