openai-cookbook
openai-cookbook copied to clipboard
Python setup.py egg_info did not run successfully when installing html==1.13
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

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
+1 python version 3.10.10
+1 python version 3.9.16
same question!
check your "setuptools" version. my pip use "setuptools-67.4.0" and it works fine.
check your "setuptools" version. my pip use "setuptools-67.4.0" and it works fine.
updating setuptools worked for me. Thanks @ocona
updating setuptools worked for me. Thanks
pip install --upgrade setuptools
solved the problem for me. Thanks