Zahra Elys
Zahra Elys

Reputation: 11

Command "python setup.py egg_info" failed with error code 1 in C:\Users\ELYSSU~1\AppData\Local\Temp\pip-build-7ado9ytn\cryptography\

I am trying to install scrapy in my Windows system, but It is showing me the below error:-

> Command "python setup.py egg_info" failed with error code 1 in C:\Users\ELYSSU~1\AppData\Local\Temp\pip-build-7ado9ytn\cryptography\

Upvotes: 1

Views: 14427

Answers (2)

fengzhengfang
fengzhengfang

Reputation: 1

That means your pip3 needs to be updated. You can process the upgrade command and upgrade the setuptools then it could work.

Upvotes: 0

I guaranteed
I guaranteed

Reputation: 299

Enter the following command and install again to install without any problems.

pip install --upgrade --ignore-installed pip setuptools

Upvotes: 14

Related Questions