mirror of https://github.com/scrapy/scrapy.git
Keep the note only in the tutorial
This commit is contained in:
parent
f8e0f6e764
commit
176b8cb7d1
|
|
@ -130,8 +130,6 @@ To install Scrapy on Windows using ``pip``:
|
|||
|
||||
Now, you should be able to :ref:`install Scrapy <intro-install-scrapy>` using ``pip``.
|
||||
|
||||
.. include:: windows-path-env-var-note.rst
|
||||
|
||||
.. _intro-install-ubuntu:
|
||||
|
||||
Ubuntu 14.04 or above
|
||||
|
|
|
|||
|
|
@ -53,7 +53,15 @@ directory where you'd like to store your code and run::
|
|||
|
||||
scrapy startproject tutorial
|
||||
|
||||
.. include:: windows-path-env-var-note.rst
|
||||
.. note::
|
||||
|
||||
If you see ``'scrapy' is not recognized as an internal or external command``
|
||||
when running ``scrapy`` on Windows, make sure you have :ref:`installed
|
||||
Scrapy properly <intro-install-windows>` and that your Python ``Scripts``
|
||||
directory is in your system ``PATH``.
|
||||
|
||||
As a workaround, run ``python -m scrapy <arguments>`` (for example, ``python
|
||||
-m scrapy startproject myproject``).
|
||||
|
||||
This will create a ``tutorial`` directory with the following contents::
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +0,0 @@
|
|||
.. note::
|
||||
|
||||
If you see ``'scrapy' is not recognized as an internal or external command``
|
||||
when running ``scrapy`` on Windows, make sure you have :ref:`installed
|
||||
Scrapy properly <intro-install-windows>` and that your Python ``Scripts``
|
||||
directory is in your system ``PATH``.
|
||||
|
||||
As a workaround, run ``python -m scrapy <arguments>`` (for example, ``python
|
||||
-m scrapy startproject myproject``).
|
||||
Loading…
Reference in New Issue