教程集 www.jiaochengji.com
教程集 >  Python编程  >  Python入门  >  正文 python3如何安装webpy

python3如何安装webpy

发布时间:2021-04-06   编辑:jiaochengji.com
教程集为您提供python3如何安装webpy等资源,欢迎您收藏本站,我们将为您提供最新的python3如何安装webpy资源

web.py是一个轻量级的python web框架,简单而且功能强大。相对flask和Django,web.py更适合初学者来学习和了解web开发的基础知识。

Python3直接使用pip install web.py的时候,默认搜寻到的是支持python2的web.py版本,安装过程中多次报错,比如utils、db模块找不到,还有print格式报错等等。

此时用esay_install就可以安装python3版本的web.py:

easy_install web.py

网上还有一种办法:

git clone https://github.com/webpy/webpy.git
cp `pwd`/webpy/web <yourproject dir>

还有一种办法,就是指定版本:

py -3 -m pip install web.py

python学习网,免费的在线学习python平台,欢迎关注!

您可能感兴趣的文章:
python3如何安装webpy
mac如何安装python3
linux如何安装python3.5
mac上如何安装python3
mac上怎么安装python3
linux如何安装python3
mac需要装python吗
ubuntu如何查看python是否已安装
centos中如何安装python3?
虚拟机如何安装python

[关闭]
~ ~