Python Pyramid 环境搭建
建议在已安装Python 3.6或更高版本的系统上安装Pyramid包。Pyramid可以安装在Linux、MacOS和Windows平台上。使用PIP安装程序在Python虚拟环境中安装最简单。
pip3 install pyramid
虽然Pyramid web应用可以使用内置的WSGI开发服务器(作为wsgiref模块的一部分)运行,但不建议在生产环境中使用。因此,我们还安装了Waitress,一个质量较高的纯Python WSGI服务器(也是Pylons项目的一部分)。
pip3 install waitress
这将安装 Pyramid(版本2.0)、Waitress(版本2.1.2),以及Pylon项目的其他依赖项,如WebOb、PasteDeploy等。要检查安装了什么,请运行pip freeze命令。
pip3 freeze
hupper==1.10.3
PasteDeploy==2.1.1
plaster==1.0
plaster-pastedeploy==0.7
pyramid==2.0
translationstring==1.4
venusian==3.0.0
waitress==2.1.2
WebOb==1.8.7
zope.deprecation==4.4.0
zope.interface==5.4.0