Tadeáš Jílek
Tadeáš Jílek

Reputation: 2843

Scrapyd - "spawnProcess not available since pywin32 is not installed" even after pywin32 installation

I have latest version of Scrapy and latest version of Scrapyd available through pip install.

I am trying to run a spider via request to http://localhost:6800 (Scrapyd).

Scrapyd returns following error :

builtins.NotImplementedError: spawnProcess not available since pywin32 is not installed.

I have installed pywin32 via pip :

pip install pywin32

It was successfully installed as i got back this message :

Successfully installed pywin32-227

What is the problem? Pywin32 is installed on my system but Scrapyd still says it is not.

Upvotes: 0

Views: 1170

Answers (3)

Madhav Kumar
Madhav Kumar

Reputation: 169

Try installing https://pypi.org/project/pypiwin32/ using

pip install pypiwin32

pip install pypiwin32

Upvotes: 0

loulisliuf
loulisliuf

Reputation: 1

You can try to copy two dlls in python3\Lib\site-packages\pywin32_system32 to C:\Windows\System32.

Upvotes: -1

Korea is ma city
Korea is ma city

Reputation: 1

Do you have the other required dependecies? I was missing twisted and it was giving me a similar error.

Upvotes: 0

Related Questions