Is there a web.py for python3 yet?

放肆的年华 提交于 2019-12-05 09:39:18

The web.py project is now publishing a pre-release version to PyPI that is Python 3 compatible; install it with:

pip install web.py==0.40-dev1

as outlined in their Getting Started section. You can also install the latest pre-release with

pip install --pre web.py

These releases are Python 3 compatible (Python 3.5 and up).

You can also install the current GitHub under-development codebase with:

pip3 install git+https://github.com/webpy/webpy#egg=web.py

The project uses Travis for continuous integration has configured Python 3.5 to run the test suite for each commit, since June 2016; the configuration has since been updated regularly to add new Python 3.x releases.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!