Merge pull request #1576 from huge-success/conda-docs

Add conda install and download stats
This commit is contained in:
7 2019-05-15 22:42:25 -07:00 committed by GitHub
commit 12f1985375
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 4 deletions

View File

@ -18,7 +18,7 @@ Sanic | Build fast. Run fast.
* - Support * - Support
- | |Forums| |Join the chat at https://gitter.im/sanic-python/Lobby| |Awesome| - | |Forums| |Join the chat at https://gitter.im/sanic-python/Lobby| |Awesome|
* - Stats * - Stats
- | |Downloads| - | |Downloads| |Conda downloads|
.. |Forums| image:: https://img.shields.io/badge/forums-community-ff0068.svg .. |Forums| image:: https://img.shields.io/badge/forums-community-ff0068.svg
:target: https://community.sanicframework.org/ :target: https://community.sanicframework.org/
@ -50,6 +50,9 @@ Sanic | Build fast. Run fast.
.. |Downloads| image:: https://pepy.tech/badge/sanic/month .. |Downloads| image:: https://pepy.tech/badge/sanic/month
:alt: Downloads :alt: Downloads
:target: https://pepy.tech/project/sanic :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 .. end-badges

View File

@ -6,7 +6,7 @@ syntax, so earlier versions of python won't work.
## 1. Install Sanic ## 1. Install Sanic
``` ```bash
pip3 install sanic pip3 install sanic
``` ```
@ -18,6 +18,13 @@ to true will stop that features installation.
SANIC_NO_UVLOOP=true SANIC_NO_UJSON=true pip3 install sanic 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` ## 2. Create a file called `main.py`
```python ```python