I have Ubuntu 16.04
. It has OpenSSL 1.0.2g
. I need to use OpenSSL 1.1.0g
. Note that OpenSSL 1.1.0g is installed in my other machine Ubuntu 18
. But I need to run a python program in Ubuntu 16.04
but I need the specific OpenSSL 1.1.0g
. I did:
sudo apt-get upgrade
sudo apt-get update
But OpenSSL
in my Ubuntu machine did not get updated. How can I update it?
I use python socket, ssl
modules to make TLS connection in port 443. Will python automatically recognizes OpenSSL 1.1.0g
if I updated the old OpenSSL 1.0.2g
to OpenSSL 1.1.0g
?
The reason for upgrading OpenSSL
is I need to run python program ssl socket but I need the program to use OpenSSL 1.1.0g
.
When I tried:
sudo apt-get install openssl
and checks the OpenSSL version via: openssl version -a
I get the old version OpenSSL 1.0.2g
How to get the new version OpenSSL 1.1.0g
in my Ubuntu 14.06
machine please?