厦门服务器租用>动态拨号VPS>Ubuntu18.04系统如何安装cherrypy

Ubuntu18.04系统如何安装cherrypy

发布时间:2023/2/11 14:53:25

Ubuntu18.04系统如何安装cherrypy

cherryPy是一个基于Python的面向对象的HTTP框架。那么在ubuntu18.04中如何安装cherrypy呢?本文给出详细说明。

1.首先确认安装了python3

Ubuntu18.04系统如何安装cherrypy-1413

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

2.更新软件列表

sudo apt-get update

Ubuntu18.04系统如何安装cherrypy-1414

3.安装python3-pip

sudo apt install python3-pip

Ubuntu18.04系统如何安装cherrypy-1415

4.安装requests库

sudo pip3 install cherrypy

Ubuntu18.04系统如何安装cherrypy-1416

5.编写测试程序

vi hello.py

写入测试程序

import cherrypy

class HelloWorld:

@cherrypy.expose

def hello(self):

return ‘hello’

cherrypy.quickstart(HelloWorld())

6.运行

python3 hello.py

Ubuntu18.04系统如何安装cherrypy-1417

在线客服
微信公众号
免费拨打400-1886560
免费拨打0592-5580190 免费拨打 400-1886560 或 0592-5580190
返回顶部
返回头部 返回顶部