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

Ubuntu18.04系统如何安装Pyramid

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

Pyramid 是一个小型、快速、实际的python web框架那么在ubuntu18.04中如何安装Pyramid呢?本文给出详细说明。

1.首先确认安装了python3

说明:一般linux系统默认都有安装python环境,包括python2python3,在命令行中python默认指的是python2python2已经接近淘汰,但由于linux系统环境中还有大量基于python2的软件,因此在linux系统中还保留着python2。目前推荐使用python3

2.更新软件列表

sudo apt-get update

3.安装python3-pip

sudo apt install python3-pip

4.安装requests

sudo pip3 install Pyramid

5.编写测试程序

vi hello.py

写入以下内容

from wsgiref.simple_server import make_server

from pyramid.config import Configurator

from pyramid.response import Response

def hello_world(request):

return Response('hello world')

if __name__ == '__main__':

with Configurator() as config:

config.add_route('hello','/')

config.add_view(hello_world,route_name='hello')

app = config.make_wsgi_app()

server = make_server('0.0.0.0',6543,app)

server.serve_forever()

保存退出

6.测试

python3 hello.py

在浏览器访问ip:6543

本文导读

客户热线:13306992629

客户服务中心