ImportError: No module named OpenSSL
You can install the relevant package using the following command:
$ sudo apt-get install python-opensslThe other option would be to install the OpenSSL paackage using Python's pip:
$ sudo pip install pyOpenSSL
Good luck!
- Tal Kain