pyhon3 安装 web 出错 ERROR: No matching distribution found for web

问题

使用python3安装 web包出错

Collecting web
ERROR: Could not find a version that satisfies the requirement web (from versions: none)
ERROR: No matching distribution found for web

原因

主要是当前稳定web版本仅支持python2

解决

可以使用实验版

pip install web.py==0.40-dev1

或者从git上获取最新版

git clone git://github.com/webpy/webpy.git
ln -s `pwd`/webpy/web .

你可能感兴趣的:(#,1.1,Python,#,3.6,基础组件)