For people with install issues on Raspberry Pi OS #115
-
A Colleague had some issues getting everything installed; I resolved this issue by download the problem package from pypi.org and update it via easy_install module: lately i had no luck with it so i did this: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Interesting, thanks for posting those tips. What platform/OS is this happening on? |
Beta Was this translation helpful? Give feedback.
-
ProblemOk, please do not to mess around with openSSL packages through This issue is occurring because even the latest Raspberry Pi OS ships a very old version of When Reticulum or related programs are installed, the SolutionThe correct (and easy) solution here is simply to update
Also, remember that if this is the very first time you install something with pip, you will need to reboot the system (or at least log out of, and back into your session) before the commands become available in the terminal (the PATH to locally installed programs is not set up before the first installation). TL;DR: Update |
Beta Was this translation helpful? Give feedback.
Problem
Ok, please do not to mess around with openSSL packages through
easy_install
. It is likely to break stuff on your system later ;)This issue is occurring because even the latest Raspberry Pi OS ships a very old version of
pip
, that makes calls to a very old version of thecryptography
API. Raspberry Pi OS should update their shippedpip
version.When Reticulum or related programs are installed, the
cryptography
package is updated to a newer version, and the ancientpip
breaks.Solution
The correct (and easy) solution here is simply to update
pip
before installing any software that requires a semi-recent version of thecryptography
package: