Anton Grouchtchak

Results 54 comments of Anton Grouchtchak

@sameert123 Can you please try the `dev_2.3` branch? The `master` branch does not have many fixes that are in `dev_2.3`.

@sameert123 Use this command: ```bash curl -sSL https://raw.githubusercontent.com/TobKra96/music_led_strip_control/master/setup.sh | sudo bash -s -- -b dev_2.3 ```

@sameert123 Looks like some package can't be installed on your pi. What's your Pi OS version?

@carlosvega I managed to get a probably bad workaround for now: ```python3 from oauthlib.oauth2.rfc6749.errors import MismatchingStateError from flask import redirect, url_for, jsonify import app @app.errorhandler(MismatchingStateError) def mismatching_state(e): return redirect(url_for("google.login")) #...

@oxigen-dev the Docker image is not up to date with the latest repo. See #864

Hi, thanks for the error log! That does look strange and I will be testing the installer to see if I can replicate this. Are you trying to install the...

Yea, it's preventing mixing `apt` and `pip` packages. I will test installing packages to a virtual environment to see if that works.

@carlyd95 @makeitready I noticed that Debian 12 Bookworm distros are now forcing installing `pip` packages into a `venv`, but I'm currently trying to figure out the root access for `pip`,...

@carlyd95 @makeitready , Can you please try installing MLSC with this command? ```shell curl -sSL https://raw.githubusercontent.com/TobKra96/music_led_strip_control/dev_2.3/setup.sh | sudo bash -s -- -b dev_2.3 ``` Just pushed the script update to...