Double quotes during pip

Single quotes return => ERROR: Invalid requirement: "'Twisted[tls,http2]'"
This commit is contained in:
Abenezer Belachew 2023-02-28 07:25:22 -05:00 committed by GitHub
parent b0204165b1
commit c2a1bb2b45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ Daphne supports terminating HTTP/2 connections natively. You'll
need to do a couple of things to get it working, though. First, you need to
make sure you install the Twisted ``http2`` and ``tls`` extras::
pip install -U 'Twisted[tls,http2]'
pip install -U "Twisted[tls,http2]"
Next, because all current browsers only support HTTP/2 when using TLS, you will
need to start Daphne with TLS turned on, which can be done using the Twisted endpoint syntax::