Ubuntu18.04体系如何安装sanic
Ubuntu18.04系统结构如何安装sanic
Sanic 是一个类Flask 的基于Python3.5
的web结构,它编写的编码运行速度特别快。那么在ubuntu18.04中如何安装sanic呢?本文给出具体说明。
1.首先确认安装了python3
说明:一般linux系统结构默认都有安装python环境,包括python2和python3,在命令行中python默认指的是python2。python2已经接近淘汰,但由于linux系统结构环境中还有大量基于python2的软体,因此在linux系统结构中还保留着python2。目前推荐使用python3。
2.刷新软体列表
sudo apt-get update
3.安装python3-pip
sudo apt-get install python3-pip
4.安装flask
sudo pip3 install sanic
5.创建一个sanic编码
vi hello.py
在其中写入
from sanic import Sanic
from sanic.response import text
app = Sanic(__name__)
@app.route('/')
async def hello_world(request):
return text('hello,world')
app.run(host="0.0.0.0", port=8000, debug=True)
保存退出
6.运行hello.py
python3 hello.py
7.试验
在浏览器打开主机IP:8000
安装成就