pip install pyopenssl

JonnyWong16
2016-05-15 21:19:36 -07:00
parent f9e2dcc9dd
commit ba53ab6de8

@@ -226,10 +226,11 @@ TLS: checked
### Windows ### Windows
#### <a name="windows-q1">Q:</a> I enabled HTTPS but received a warning that the pyOpenSSL module is missing. How do I fix this? #### <a name="windows-q1">Q:</a> 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. 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.