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

时间:2022-07-24
本文章向大家介绍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 .