ERROR: No matching distribution found for web问题

使用python3安装 web包出错

要为 Python 3 安装最新的 web.py,请运行

pip3 install web.py

最新0.62版本支持 Python >= 3.5。版本0.51是支持 Python 2.7 的最后一个版本。

测试:

import web

urls = (
    '/', 'index'
)

class index:
    def GET(self):
        return "Hello, world!"

if __name__ == "__main__":
    app = web.application(urls, globals())
    app.run()

显示:

http://0.0.0.0:8080/

输入网址:
http://127.0.0.1:8080/

猜你喜欢

转载自blog.csdn.net/wuli_xin/article/details/124808276