Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

./license_checker -f does not work #37

Open
PranayG opened this issue Mar 18, 2024 · 5 comments
Open

./license_checker -f does not work #37

PranayG opened this issue Mar 18, 2024 · 5 comments

Comments

@PranayG
Copy link

PranayG commented Mar 18, 2024

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

@chenxi-wang
Copy link
Collaborator

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

@yqi19
Copy link

yqi19 commented Mar 22, 2024

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
Copy link

yqi19 commented Mar 22, 2024

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.

@yuqi0166
Copy link

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)

@Axi404
Copy link

Axi404 commented Aug 23, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants