openai-cookbook icon indicating copy to clipboard operation
openai-cookbook copied to clipboard

Python setup.py egg_info did not run successfully when installing html==1.13

Open ashokmanghat opened this issue 2 years ago • 7 comments
trafficstars

Python Version: 3.11.2

Commands executed python -m venv env source env/bin/activate pip install -r requirements.txt

During the execution, i am getting the following error when installing html==1.13

image

I have removed the particular dependency from the requirements.txt file and was successfully able to build and execute it. If the particular dependency is not needed it would be wise to remove it from the requirements.txt file

ashokmanghat avatar Feb 23 '23 07:02 ashokmanghat

+1 python version 3.10.10

hanswang73 avatar Feb 23 '23 09:02 hanswang73

+1 python version 3.9.16

DayTimeDreamer avatar Feb 27 '23 06:02 DayTimeDreamer

same question!

cwandev avatar Feb 27 '23 09:02 cwandev

check your "setuptools" version. my pip use "setuptools-67.4.0" and it works fine.

ocona avatar Mar 04 '23 23:03 ocona

check your "setuptools" version. my pip use "setuptools-67.4.0" and it works fine.

updating setuptools worked for me. Thanks @ocona

anihalaney avatar Mar 05 '23 00:03 anihalaney

updating setuptools worked for me. Thanks

bybackup avatar Mar 19 '23 08:03 bybackup

pip install --upgrade setuptools

solved the problem for me. Thanks

theviderlab avatar Apr 17 '23 00:04 theviderlab