diff --git a/README.rst b/README.rst index d98e8736..334704b7 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ Sanic | Build fast. Run fast. * - Support - | |Forums| |Join the chat at https://gitter.im/sanic-python/Lobby| |Awesome| * - Stats - - | |Downloads| + - | |Downloads| |Conda downloads| .. |Forums| image:: https://img.shields.io/badge/forums-community-ff0068.svg :target: https://community.sanicframework.org/ @@ -50,6 +50,9 @@ Sanic | Build fast. Run fast. .. |Downloads| image:: https://pepy.tech/badge/sanic/month :alt: Downloads :target: https://pepy.tech/project/sanic +.. |Conda downloads| image:: https://img.shields.io/conda/dn/conda-forge/sanic.svg + :alt: Downloads + :target: https://anaconda.org/conda-forge/sanic .. end-badges diff --git a/docs/sanic/getting_started.md b/docs/sanic/getting_started.md index 0c05389d..8c9ec495 100644 --- a/docs/sanic/getting_started.md +++ b/docs/sanic/getting_started.md @@ -6,9 +6,9 @@ syntax, so earlier versions of python won't work. ## 1. Install Sanic - ``` - pip3 install sanic - ``` +```bash +pip3 install sanic +``` To install sanic without `uvloop` or `ujson` using bash, you can provide either or both of these environmental variables using any truthy string like `'y', 'yes', 't', 'true', 'on', '1'` and setting the `SANIC_NO_X` (`X` = `UVLOOP`/`UJSON`) @@ -18,6 +18,13 @@ to true will stop that features installation. SANIC_NO_UVLOOP=true SANIC_NO_UJSON=true pip3 install sanic ``` +You can also install Sanic from [`conda-forge`](https://anaconda.org/conda-forge/sanic) + +```bash +conda config --add channels conda-forge +conda install sanic +``` + ## 2. Create a file called `main.py` ```python