anygrasp_sdk
anygrasp_sdk copied to clipboard
./license_checker -f does not work
I have installed the requirements.txt file and tried fetching a new feature ID. This error is persistent in many systems I have tried in. The OS is Ubuntu 22.04 as well.
Error : libcrypto.so.1.1: cannot open shared object file: No such file or directory
Seems like a dependency issue. You can install this lib manually.
I encounter with the same issue, do you resolve this?
I have installed the requirements.txt file and tried fetching a new feature ID. This error is persistent in many systems I have tried in. The OS is Ubuntu 22.04 as well.
Error : libcrypto.so.1.1: cannot open shared object file: No such file or directory
I encounter with the same issue, do you resolve this?
Seems like a dependency issue. You can install this lib manually.
I encounter with the same issue, do you resolve this? The lib does not support 1.1.1 on their official website.
Here is my solution to this: https://stackoverflow.com/questions/72133316/libssl-so-1-1-cannot-open-shared-object-file-no-such-file-or-directory
follow the instructions to re-install a OpenSSL 1.1.1 (this will not overlap with your current OpenSSL)
There is a tmp easy way to to fix this issue:
# to solve libcrypto.so.1.1 issue
find / -name libcrypto.so.1.1
# for example found a libcrypto.so.1.1 from cuda
sudo ln -s /usr/local/cuda-12.1/nsight-systems-2023.1.2/host-linux-x64/libcrypto.so.1.1 /usr/lib/libcrypto.so.1.1
# to solve ifconfig issue
sudo apt install net-tools
# use license checker
./license_checker -f
# you can choose to remove libcrypto.so.1.1 or just keep it
sudo rm /usr/lib/libcrypto.so.1.1
