the fishman
the fishman

Reputation: 49

window pip install scrapy error "running build_ext error: [Error 5]"

How can I avoid this error?

    running build_ext
    error: [Error 5]

    ----------------------------------------
Command "C:\Python27\python.exe -u -c "import setuptools, tokenize;__file__='c:\
\users\\admini~1\\appdata\\local\\temp\\pip-build-zc67ii\\Twisted\\setup.py';f=g
etattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.c
lose();exec(compile(code, __file__, 'exec'))" install --record c:\users\admini~1
\appdata\local\temp\pip-pxb6xl-record\install-record.txt --single-version-extern
ally-managed --compile" failed with error code 1 in c:\users\admini~1\appdata\lo
cal\temp\pip-build-zc67ii\Twisted\

C:\Users\Administrator>

Upvotes: 0

Views: 749

Answers (1)

Adrien Blanquer
Adrien Blanquer

Reputation: 2061

Installing Scrapy on Windows can be a real struggle.

That's why the scrapy documentation recommands to use Anaconda for the scrapy installation. I think you should give it a try if you are working on Windows.

First you need to install Anaconda following this tutorial.

Then you just need to run this command conda install -c conda-forge scrapy and you are good to go.

Upvotes: 2

Related Questions