Changed install instructions to use pypi

This commit is contained in:
Channel Cat 2016-10-16 02:58:17 -07:00
parent 4f102a9cf2
commit 7ceba1ae9d
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ app.run(host="0.0.0.0", port=8000)
``` ```
## Installation ## Installation
* `python -m pip install git+https://github.com/channelcat/sanic/` * `python -m pip install sanic`
## Documentation ## Documentation
* [Getting started](docs/getting_started.md) * [Getting started](docs/getting_started.md)

View File

@ -4,7 +4,7 @@ Make sure you have pip and python 3.5 before starting
## Benchmarks ## Benchmarks
* Install Sanic * Install Sanic
* `python3 -m pip install git+https://github.com/channelcat/sanic/` * `python3 -m pip install sanic`
* Edit main.py to include: * Edit main.py to include:
```python ```python
from sanic import Sanic from sanic import Sanic
@ -20,6 +20,6 @@ app.run(host="0.0.0.0", port=8000, debug=True)
``` ```
* Run `python3 main.py` * Run `python3 main.py`
You now have a working sanic server! To continue on, check out: You now have a working Sanic server! To continue on, check out:
* [Request Data](request_data.md) * [Request Data](request_data.md)
* [Routing](routing.md) * [Routing](routing.md)