Keep the note only in the tutorial

This commit is contained in:
Adrian Chaves 2026-06-24 12:14:01 +02:00
parent f8e0f6e764
commit 176b8cb7d1
3 changed files with 9 additions and 12 deletions

View File

@ -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

View File

@ -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::

View File

@ -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``).