Autopilot fails to install in a python 3.11 environment, but in a confusing way #208
Rodgers-PAC-Lab
started this conversation in
General
Replies: 1 comment 2 replies
-
This is likely a longstanding issue with poetry where it didnt handle multiple architectures well (specifically it wouldnt fetch from pypi for x86-64 and piwheels for arm) so you had to compile from source. I am going to spend time addressing the bugs I introduced (sigh) in the last update today and Monday and will see if this had changed |
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
-
I just set up a new pi with autopilot and Raspbian Lite OS, which ships with python 3.11 now and causes some errors with unhelpful diagnostics so figured I'd let people know.
When you get to the pip install -e .[pilot] step, instead of telling you about the python version conflict it does one of two things:
If you haven't increased the size of the swapfile it'll just hang forever.
If you have increased the swapfile it'll take an hour+, start compiling C and fortran (?!) objects related to sci-py, and finally tell you
.... So if you're getting either of those symptoms, check your python version. I used pyenv to set up python 3.9, and then it all worked fine.
Beta Was this translation helpful? Give feedback.
All reactions