anygrasp_sdk icon indicating copy to clipboard operation
anygrasp_sdk copied to clipboard

./license_checker -f does not work

Open PranayG opened this issue 1 year ago • 6 comments

Screenshot from 2024-03-18 14-52-56

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

PranayG avatar Mar 18 '24 18:03 PranayG

Seems like a dependency issue. You can install this lib manually.

chenxi-wang avatar Mar 19 '24 06:03 chenxi-wang

I encounter with the same issue, do you resolve this?

Screenshot from 2024-03-18 14-52-56

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?

yqi19 avatar Mar 22 '24 01:03 yqi19

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.

yqi19 avatar Mar 22 '24 01:03 yqi19

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)

yuqi0166 avatar Mar 22 '24 01:03 yuqi0166

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

Axi404 avatar Aug 23 '24 17:08 Axi404