Html5lib requires setuptools version 18.5 or higher; upgrade before installation (you have 0.6)

When I try to give the pip installation in my file requirements.txt, it does not work as follows:

html5lib requires setuptools version 18.5 or above; please upgrade before installing (you have 0.6)

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-5xXCfM/html5lib/ .

I looked at a part of a previous post where some users mentioned that it resolved by indicating:

pip install html5lib --upgrade

But when I issue the above command, it tells me to update the installation tools, and when I try to update or update setuptools, it will update.

Can someone tell me what can be done in this case?

+4
source share
2 answers

, html5lib, setuptools, html5lib.

, html5lib, , setuptools

pip install -U setuptools
+7

? -user pip

0

Source: https://habr.com/ru/post/1652568/


All Articles