问答详情
源自:1-3 web.py安装

web.py 不支持python3.5吗?

web.py 不支持python3.5吗?

提问者:慕圣4562359 2017-08-12 16:27

个回答

  • 念奴娇
    2019-03-01 11:13:51

    python3.x  请使用pip install web.py==0.40.dev0 

    修改lib\site-packes\web\utils.py文件  526行

    526      yield  nect(seq)

    改为:

    try:

        yield next(seq)

    except stopInteration

          return

  • 念奴娇
    2019-02-28 15:48:03

    python3.  请使用pip install web.py==0.40.dev0 



  • 慕勒3349112
    2017-08-12 19:10:23

    暂不支持