0

I got this error when I tried to install sklearn when launching AWS EC2 instance.I tried looking for ways but I couldn't understand what I should do .

  • Does this answer your question? ["pip install unroll": "python setup.py egg\_info" failed with error code 1](https://stackoverflow.com/questions/35991403/pip-install-unroll-python-setup-py-egg-info-failed-with-error-code-1) – MFerguson Dec 15 '21 at 17:26

1 Answers1

0

Try:

pip3 install --upgrade setuptools

pip3 install --upgrade pip

(you might have to navigate back to the original/root folder)

ref: https://www.codegrepper.com/code-examples/whatever/python+setup.py+egg_info%22+failed+with+error+code+1+i

Amina
  • 1