mirror of https://github.com/scrapy/scrapy.git
Add note for Windows users about python -m scrapy alternative
This commit is contained in:
parent
e02ad08672
commit
e8b5ab5e14
|
|
@ -130,6 +130,12 @@ To install Scrapy on Windows using ``pip``:
|
|||
|
||||
Now, you should be able to :ref:`install Scrapy <intro-install-scrapy>` using ``pip``.
|
||||
|
||||
.. note::
|
||||
**Windows users:** If you see a message like ``'scrapy' is not recognized
|
||||
as an internal or external command`` after installation, you can run
|
||||
``python -m scrapy <arguments>`` instead (e.g.,
|
||||
``python -m scrapy startproject myproject``).
|
||||
|
||||
.. _intro-install-ubuntu:
|
||||
|
||||
Ubuntu 14.04 or above
|
||||
|
|
|
|||
|
|
@ -53,6 +53,12 @@ directory where you'd like to store your code and run::
|
|||
|
||||
scrapy startproject tutorial
|
||||
|
||||
.. note::
|
||||
**Windows users:** If you see a message like ``'scrapy' is not recognized
|
||||
as an internal or external command``, you can run
|
||||
``python -m scrapy <arguments>`` instead (e.g.,
|
||||
``python -m scrapy startproject myproject``).
|
||||
|
||||
This will create a ``tutorial`` directory with the following contents::
|
||||
|
||||
tutorial/
|
||||
|
|
|
|||
Loading…
Reference in New Issue