You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/cloudflare-one/connections/connect-devices/warp/user-side-certificates/manual-deployment.mdx
+27-25Lines changed: 27 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -305,49 +305,51 @@ For information on installing a Cloudflare certificate for organizations, refer
305
305
306
306
### Python
307
307
308
+
Depending on which version of Python you have installed and your configuration, you may need to use either the `python` or `python3` command. If you use [virtual environments](https://docs.python.org/3/library/venv.html), you will need to repeat the following steps within each virtual environment.
309
+
308
310
#### Python on Windows
309
311
310
312
The command to install the certificate with Python on Windows automatically includes `pip` and `certifi` (the default certificate bundle for certificate validation).
311
313
312
314
1.[Download a Cloudflare certificate](#download-the-cloudflare-root-certificate) in `.crt` format.
313
-
2.Update the bundle to include the Cloudflare certificate:
315
+
2.In a PowerShell terminal, install the `certifi` package:
314
316
```powershell
315
-
gc "$env:USERPROFILE\Downloads\certificate.crt" | ac C:\Python37\Lib\site-packages\pip\_vendor\certifi\cacert.pem
5. If needed, configure system variables to point to this CA store:
345
-
346
+
4. (Optional) Configure your system variables to point to the CA store by adding them to your shell's configuration file (such as `~/.zshrc` or `~/.bash_profile`). For example:
0 commit comments