revert back to 1.6.2 #1731
Closed
Scherzingetorix
started this conversation in
General
Replies: 1 comment 2 replies
-
We don't have great support for jumping back to old versions, as we'd rather understand and fix what's wrong rather than have people roll back to versions from years ago. This might work, but I think it's likely to hit issues: curl \
--silent \
--show-error \
https://raw.githubusercontent.com/tiny-pilot/tinypilot/1.6.2/quick-install | \
bash - && \
sudo reboot Alternatively, this might work: # I know you want 1.6.2, but this is the earliest version that
# supports this install method.
TARGET_VERSION="1.8.1"
cd $(mktemp -d) && \
git clone https://github.com/tiny-pilot/tinypilot.git . && \
git checkout "${TARGET_VERSION}" && \
./dev-scripts/install-from-source Again, these aren't supported, so I can't offer further assistance if they don't work, but I wanted to share some pointers of things that might work. We're also happy to help you diagnose what could be going wrong in the current version. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Is there a relatively simple way to revert to version 1.6.2 on my self-built Raspberry Pi 4 solution? I've been using this version for a long time without any issues. Recently, I updated, and it became slower over time. Since the last update, it's unusable because MJPEG compression doesn't work, and the H.264 freezes after a few minutes. So, I'd like to roll back to version 1.6.2. How can I do this? Could you provide a step-by-step guide?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions