-
Notifications
You must be signed in to change notification settings - Fork 120
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
Installation on Rpi wth Python 3.11? #676
Comments
An you share the error message? |
I logged installation process in this file: |
Can you try to run just |
sure, here is the result: |
It seems like PyQt5 / PyQtWebEngine are the issues. Is there a way how to install it without them, at least as a temporary workaround? I don't need gui. |
You could try to hack the platform detection in if machine().lower() in {'aarch32', 'armv7l'}:
platform += '32'
architecture = 'aarch32'
elif machine().lower() in {'aarch64', 'arm64'}:
platform += '64'
architecture = 'aarch64'
elif machine().lower() in {'amd64', 'i386', 'i686', 'x86', 'x86_64', 'x86pc'}:
if sys.maxsize > 2 ** 32:
platform += '64'
architecture = 'x86_64'
else:
platform += '32'
architecture = 'x86'
else:
raise Exception(f"Unsupported architecture: {machine()}") |
Here is what I get after modifying init.py: |
You should still be able to simulate FMUs. The logging.so is only needed to process variadic arguments in log calls. |
Hello, have anyone tried installation on Rpi3 or Rpi4? I use them with Python 3.11.2 and Bullseye lite. Installation via pip just fails.
The text was updated successfully, but these errors were encountered: