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

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

./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 :: brew on windows 
Shell :: run redis o docker no auth 
Shell :: how to install gnome software center 
Shell :: Get file version in PowerShell 
Shell :: tcr test commit revert 
Shell :: display folder color linux 
Shell :: install lazydocker 
Shell :: regex first in line 
Shell :: git remote add origin 
Shell :: awk convert first character to lowercase 
Shell :: wget typo3 8 
Shell :: bash open file in text editor 
Shell :: git auto sign 
Shell :: how create new git branch 
Shell :: xstate install 
Shell :: step3 pgadmin ubuntu 20.04 
Shell :: which path of executable powershell 
Shell :: phoenix install 
Shell :: undo git amend 
Shell :: download svn 
Shell :: shell thousand comma in number 
Shell :: bison install in kali linux 
Shell :: windows battery report health 
Shell :: command can be used to find files or folders matching a particular search pattern in linux 
Shell :: powershell function resize image 
Shell :: Use R markdown in github README 
Shell :: command to change user ID 
Shell :: install ripgrep windows 
Shell :: mac kill process 
Shell :: how to install uvicorn 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =