In order to easily solve the following Python import error on Ubuntu systems:
You can install the relevant package using the following command:
Good luck!
- Tal Kain
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
How to do same in windows
ReplyDeleteYou should follow this comment: http://stackoverflow.com/a/12476379/132847
Deleteafter that, just run:
pip.exe install pyOpenSSL
(You should follow the "Alternative instructions" in case your %PATH% environment variable does not include the Python's path).
Good luck :)