Install autopilot on the pilot, numpy incompatibility #77
Answered
by
sneakers-the-rat
neurodavidus
asked this question in
Q&A
-
Hello |
Beta Was this translation helpful? Give feedback.
Answered by
sneakers-the-rat
Feb 12, 2021
Replies: 1 comment 1 reply
-
Looks like you're using the system python interpreter, and it looks like you have an old version of numpy installed (probably through apt, like |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
neurodavidus
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like you're using the system python interpreter, and it looks like you have an old version of numpy installed (probably through apt, like
apt install python3-numpy
, since that's the latest version on the raspberry pi apt repos). installing fresh in a virtualenv should fix, or you can otherwise update system numpy by usingpip3 install --upgrade numpy
:) I'll add that to the requirements files now