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.