user6055239
user6055239

Reputation: 93

Installing scrapinghub splash in windows cmd

I'm new to using scrapy / splash. Based on the instructions here I have successfully installed scrapy-splash. The second requirement is splash itself. I do not have docker and splash documentation does not have instructions on how to install splash for windows without docker. Could someone please help?

This is the error msg i get

C:\splash>C:\Python27\Python.exe setup.py
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help

error: no commands supplied

Thanks in advance!

Upvotes: 2

Views: 2896

Answers (2)

周卓涵
周卓涵

Reputation: 19

scrapy-splash needs a docker as its virtual environment. Therefore it is so hard to deploy splash without docker.

Upvotes: 1

user6055239
user6055239

Reputation: 93

Found my answer here: How do you run a setup.py file properly?

C:\Python27\Python.exe setup.py install

Upvotes: 0

Related Questions