windows系统python3安装web.py和libxml2

pip install web.py
报错19.2.3,让升级19.3.1
python -m pip install --upgrade pip
升级完之后,再次安装,
pip install web.py -i https://pypi.tuna.tsinghua.edu.cn/simple
依然失败
pip install web.py==0.40-dev01 -i https://pypi.tuna.tsinghua.edu.cn/simple
成功了。

Windows上python3安装libxml2

pip install lxml -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install virtualenv -i https://pypi.tuna.tsinghua.edu.cn/simple

Windows上python3安装libxslt

lxml是Python中与XML及HTML相关功能中最丰富和最容易使用的库。lxml并不是Python自带的包,而是为libxml2和libxslt库的一个Python化的绑定

所以就经历上步骤,就不用安装libxslt了吧

参考文章

Windows上python3安装libxml2

在windows系统中实现python3安装lxml

原文地址:https://www.cnblogs.com/marvelousone/p/12185582.html