Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ImportError: libssl.so.1.1: cannot open shared object file: No such file or directory

# What did work for me is the following:
wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz
cd openssl-1.1.1o
./config
make
# got some errors
make test 
sudo make install
ln -s [ABSOLUTE_PATH]/libssl.so.1.1      /usr/lib/libssl.so.1.1
ln -s [ABSOLUTE_PATH]/libcrypto.so.1.1   /usr/lib/libcrypto.so.1.1

# TOBETESTED 
### ln -s /usr/local/lib64/libssl.so.1.1  /usr/lib64/libssl.so.1.1
### ln -s /home/ubuntu/openssl-1.1.1o/libcrypto.so.1.1    /usr/lib64/libcrypto.so.1.1
Comment

libopenslide.so.0: cannot open shared object file: No such file or directory

sudo apt-get install openslide-tools
sudo apt-get install python-openslide
pip install openslide-python
Comment

error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory

wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz
cd openssl-1.1.1o
./config
make
make test
sudo make install
Comment

error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory

sudo apt-get install ffmpeg libsm6 libxext6  -y
Comment

utserver: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory

cd /etc/apt/
sudo gedit sources.list

#add following lines to end of the file and save it

#Bionic support 
deb http://ca.archive.ubuntu.com/ubuntu/ bionic main restricted
deb http://ca.archive.ubuntu.com/ubuntu/ bionic universe
deb http://ca.archive.ubuntu.com/ubuntu/ bionic multiverse

run:
sudo apt update
sudo apt install libssl1.0.0
Comment

how to fix error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory on ubuntu 22.04.01

wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb

sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb
Comment

./utserver: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: no such file or directory

For Ubuntu 20.0LTS
cd ~/Downloads
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl1.0/libssl1.0.0_1.0.2n-1ubuntu5.6_amd64.deb
sudo apt-get install ./libssl1.0.0_1.0.2n-1ubuntu5.6_amd64.deb
Comment

PREVIOUS NEXT
Code Example
Shell :: print scipy version 
Shell :: maven test skip 
Shell :: bash go to home directory 
Shell :: check size folder terminal 
Shell :: kill process in windows 
Shell :: wsl install 
Shell :: switch from npm to yarn 
Shell :: git delete all remote branches except master 
Shell :: how to commit a specific file in git 
Shell :: composer ins 
Shell :: install rollup locally 
Shell :: git create new repo 
Shell :: delete all files in a directory cmd 
Shell :: Looping over a file lines in bash 
Shell :: how to check if in which folder are you present in linux 
Shell :: iis reset command 
Shell :: pnpm install dev 
Shell :: deleting remote branch in GitHub 
Shell :: windows untar powershell 
Shell :: react icons installation through npm 
Shell :: how to push a project to github 
Shell :: How to download Citrix Workspace for Ubuntu 
Shell :: git lfs install 
Shell :: linux time wrong 
Shell :: git clone in current directory 
Shell :: specify origin git 
Shell :: install composer by cmd 
Shell :: ubuntu move all files in directory 
Shell :: ubuntu install ssh-agent 
Shell :: kubernetes exec into pod 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =