After installing and running fiftyone in python (using ubuntu 22.04), you get:
error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
After installing and running fiftyone in python (using ubuntu 22.04), you get:
error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
Copyright © 2021 Jogjafile Inc.
[DISCLAIMER: credits for this answer should go here]
libcrypto.so.1.1is part of thelibsslpackage, which is by default version3.*on ubuntu22.04.You don't want to override your default
libsslinstallation just for running fiftyOne. Instead, you can download an older version and install it in an isolated location. For example:Then before running your python program:
Why this near duplicate answer?