fix minor type and pip install instruction mismatch
This commit is contained in:
parent
13804dc380
commit
15b1c875f5
|
@ -57,7 +57,7 @@ To install sanic without uvloop or ujson using bash, you can provide either or b
|
|||
using any truthy string like `'y', 'yes', 't', 'true', 'on', '1'` and setting the ``SANIC_NO_X`` (``X`` = ``UVLOOP``/``UJSON``)
|
||||
to true will stop that features installation.
|
||||
|
||||
- ``SANIC_NO_UVLOOP=true SANIC_NO_UJSON=true pip install sanic``
|
||||
- ``SANIC_NO_UVLOOP=true SANIC_NO_UJSON=true pip3 install sanic``
|
||||
|
||||
|
||||
Hello World Example
|
||||
|
|
|
@ -16,7 +16,7 @@ directory with a virtual environment already set up, then run:
|
|||
|
||||
.. code:: bash
|
||||
|
||||
pip3 install -e . '[.dev]'
|
||||
pip3 install -e '.[dev]'
|
||||
|
||||
Dependency Changes
|
||||
------------------
|
||||
|
@ -35,7 +35,7 @@ the document that explains the way ``sanic`` manages dependencies inside the ``s
|
|||
| extras_require['test'] | for ``sanic`` | |
|
||||
+------------------------+-----------------------------------------------+--------------------------------+
|
||||
| extras_require['dev'] | Additional Development requirements to add | ``pip3 install -e '.[dev]'`` |
|
||||
| | contributing | |
|
||||
| | for contributing | |
|
||||
+------------------------+-----------------------------------------------+--------------------------------+
|
||||
| extras_require['docs'] | Dependencies required to enable building and | ``pip3 install -e '.[docs]'`` |
|
||||
| | enhancing sanic documentation | |
|
||||
|
|
Loading…
Reference in New Issue
Block a user