-
Notifications
You must be signed in to change notification settings - Fork 104
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
[Error] Raspberry Pi 5 - installation error #887
Comments
Same here, dissapointing doesn't look like it's going to get fixed, there has been no activity in a while :( |
Try it with
with |
Thank! It solves the problem. TASK [common : Install required Python packages using pip3] ********************************************************************************************************************************************************************************** The full output: """lgmendes@raspberrypi5:~/raspberry-noaa-v2 $ ./install_and_upgrade.sh
PLAY [install raspberry-noaa-v2 core] ******************************************************************************************************************************************************************************************************** TASK [get os release] ************************************************************************************************************************************************************************************************************************ TASK [common : install dependencies] ********************************************************************************************************************************************************************************************************* TASK [common : Install required Python packages using pip3] ********************************************************************************************************************************************************************************** PLAY RECAP *********************************************************************************************************************************************************************************************************************************** Error: Something failed with the install - please inspect the logs above """ |
Seems to be a change in the way you install things, I've installed all 3 manually in a vertical env as suggested here https://stackoverflow.com/questions/75602063/pip-install-r-requirements-txt-is-failing-this-environment-is-externally-mana But I still get the error **** |
I think some tweeking of this is involved
but I'm not sure how |
The only package I installed with But I came from a Raspberry Pi 4 with Bullseye and RN2 installed (long time ago). |
Yeah I think there has been changes made, I think the script might need changing, It possibly doesn't look to see if they are already installs and then trys to install them anyway which doesn't work due to the recent change |
|
I am doing this on the following version on a Raspberry Pi 4 2GB - Pi OS Lite (64-bit). I know this thread is about rpi5, but I wanted to try and help with my testing.
Doing everything above.
This did get us further. I am going to log everything I've done to get to the next road block.
This next crash is so bad that I'm not posting it on GitHub https://pastebin.com/LhmejmNR |
I just had the same kinds of problems on a 32 bit version of Raspbian Bookworm on a Raspberry pi 4. I think that this scripts have been made for Raspbian bullseye but produce errors on Bookworms. Finally I have installed a prebuild image on my micro sd card.. |
The problem here is the architecture. There is no arm64 version of the packages it's trying to install in the software directory, so it's bombing. Issue 463 references installing packages for armhf to arm64, however since you have to use
You can install those, but you need to add I've forked this repo to see if I can build a switch into the Ansible roles to use this workaround. I was able to install
|
when I run ./install_and_upgrade.sh I get a error related with "No package matching 'libopenblas-base'
on a Raspberry Pi 5 (Debian GNU/Linux 12 (bookworm))
'''
lgmendes@raspberrypi5:~ $ cd raspberry-noaa-v2/
lgmendes@raspberrypi5:~/raspberry-noaa-v2 $ ./install_and_upgrade.sh
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
python3-yaml is already the newest version (6.0-3+b2).
python3-jsonschema is already the newest version (4.10.3-1).
The following package was automatically installed and is no longer required:
rtimucli
Use 'sudo apt autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
SUCCESS: The configuration config/settings.yml conforms to the expected schema!
✓ Config check complete!
✓ Settings file ready!
[DEPRECATION WARNING]: "include" is deprecated, use include_tasks/import_tasks
instead. See https://docs.ansible.com/ansible-
core/2.14/user_guide/playbooks_reuse_includes.html for details. This feature
will be removed in version 2.16. Deprecation warnings can be disabled by
setting deprecation_warnings=False in ansible.cfg.
PLAY [install raspberry-noaa-v2 core] ******************************************
TASK [get os release] **********************************************************
ok: [localhost]
TASK [common : install dependencies] *******************************************
fatal: [localhost]: FAILED! => {"changed": false, "msg": "No package matching 'libopenblas-base' is available"}
PLAY RECAP *********************************************************************
localhost : ok=1 changed=0 unreachable=0 failed=1 skipped=0 rescued=0 ignored=0
Error: Something failed with the install - please inspect the logs above
'''
The text was updated successfully, but these errors were encountered: