Ubuntu && Python: Solving "ImportError: No module named OpenSSL"
In order to easily solve the following Python import error on Ubuntu systems:
ImportError: No module named OpenSSL
You can install the relevant package using the following command:
$ sudo apt-get install python-openssl
The other option would be to install the OpenSSL paackage using Python's pip:
$ sudo pip install pyOpenSSL
Good luck!
- Tal Kain