帮助文档>Linux实用技巧 > Ubuntu18.04系统如何安装sanic

Ubuntu18.04系统如何安装sanic

发布时间:2021-09-24 04:27
 

Sanic 是一个类Flask 的基于Python3.5 web框架,它编写的代码速度特别快。那么在ubuntu18.04中如何安装sanic呢?本文给出详细说明。

1.首先确认安装了python3

说明:一般linux系统默认都有安装python环境,包括python2python3,在命令行中python默认指的是python2python2已经接近淘汰,但由于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.测试

在浏览器打开主机IP8000

安装成功

 

本文导读

客户热线:13306992629

客户服务中心