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

2020-09-09 21:16:17 浏览数 (1)

问题

使用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

解决

可以使用实验版

代码语言:javascript复制
pip install web.py==0.40-dev1

或者从git上获取最新版

代码语言:javascript复制
git clone git://github.com/webpy/webpy.git
ln -s `pwd`/webpy/web .

0 人点赞