If getting error “unknown url type: https” and No module named_ssl error on linux server
This tutorial will help to resolve the python script error “unknown url type: https” and “No module named_ssl” on linux server.
This error message generally occurs if you didn’t install python dependencies most likely openssl-devel.So install the above dependency to resolve the error.
On Ubuntu
root@linuxpcfix [~]# sudo yum install libssl-dev
On CentOS, Fedora or RHEL:
root@linuxpcfix [~]#$ yum install openssl-devel
Further make sure the module named _ssl.so should be exist in “/usr/local/lib/python2.7/lib-dynload/” directory.
