From ba53ab6de83d582a0227a4513607d8cb3986d4af Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 15 May 2016 21:19:36 -0700 Subject: [PATCH] pip install pyopenssl --- Frequently-Asked-Questions-(FAQ).md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Frequently-Asked-Questions-(FAQ).md b/Frequently-Asked-Questions-(FAQ).md index 7ce7450..fe24283 100644 --- a/Frequently-Asked-Questions-(FAQ).md +++ b/Frequently-Asked-Questions-(FAQ).md @@ -226,10 +226,11 @@ TLS: checked ### Windows #### Q: I enabled HTTPS but received a warning that the pyOpenSSL module is missing. How do I fix this? -**A:** The pyOpenSSL module is not bundled with Python. Follow the two simple steps below to manually install it. +**A:** The pyOpenSSL module is not bundled with Python. Run the following in the command line to install it. -1. Download https://github.com/pyca/pyopenssl/archive/0.15.1.zip and save it to `C:\` -2. Run `C:\Python27\Scripts\pip.exe install C:\pyopenssl-0.15.1.zip` +``` +pip install pyopenssl +``` If you have installed Python into a different directory or downloaded pyopenssl to somewhere else you have to modify the above command in step 2 accordingly.