安装web.py 时候报错:
ModuleNotFoundError: No module named 'utils'
原因
在python3 上安装 web.py ,使用的安装指令不对
解决方法
官网(http://webpy.org/)给出了安装方法:
python2:
pip install web.py
python3:
pip install web.py==0.40-dev1
安装web.py 时候报错:
ModuleNotFoundError: No module named 'utils'
在python3 上安装 web.py ,使用的安装指令不对
官网(http://webpy.org/)给出了安装方法:
python2:
pip install web.py
python3:
pip install web.py==0.40-dev1