Make the note more concise.

This commit is contained in:
Adrian Chaves 2026-03-03 09:16:04 +01:00
parent 8be6d5cf32
commit 888d0725fd
1 changed files with 5 additions and 8 deletions

View File

@ -1,11 +1,8 @@
.. note::
If you see a message like ``'scrapy' is not recognized as an internal or external command``
when trying to run the ``scrapy`` command-line tool, it usually means that the
Python ``Scripts`` directory is not in your system ``PATH``.
If you see ``'scrapy' is not recognized as an internal or external command``
when running ``scrapy``, you probably need to add your Python ``Scripts``
directory to your system ``PATH``.
To make the ``scrapy`` command available, add the ``Scripts`` directory of your
Python installation to the ``PATH`` environment variable.
As a workaround, you can run ``python -m scrapy <arguments>`` instead (for example,
``python -m scrapy startproject myproject``).
As a workaround, run ``python -m scrapy <arguments>`` (for example, ``python
-m scrapy startproject myproject``).