广告

Ubuntu18.04系统如何安装Pyramid

2023-12-25

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

1.首先确认安装了python3

首先确认安装了python3

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

2.更新软件列表

sudo apt-get update

更新软件列表


3.安装python3-pip

sudo apt install python3-pip

安装python3-pip

4.安装requests库

sudo pip3 install Pyramid

安装requests库

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

在浏览器访问ip:6543

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。本站原创内容未经允许不得转载,或转载时需注明出处!

上一篇:Ubuntu18.04系统如何安装requests库

下一篇:Ubuntu18.04系统如何安装fortran编译器

这条帮助是否解决了您的问题?已解决未解决

提交成功!非常感谢您的反馈,我们会继续努力做到更好!很抱歉未能解决您的疑问。我们已收到您的反馈意见,同时会及时作出反馈处理!

立即注册91VPS账号,免费体验多款产品
立即注册
联系我们
全国咨询热线:
0712-5319406
QQ客服:
800193021
91VPS微信客服

扫码联系微信客服