From 888d0725fd791c2f8993a88189592e1dad0f5a5b Mon Sep 17 00:00:00 2001 From: Adrian Chaves Date: Tue, 3 Mar 2026 09:16:04 +0100 Subject: [PATCH] Make the note more concise. --- docs/intro/windows-path-env-var-note.rst | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/docs/intro/windows-path-env-var-note.rst b/docs/intro/windows-path-env-var-note.rst index e4e1f7d0f..cf6f8ef5a 100644 --- a/docs/intro/windows-path-env-var-note.rst +++ b/docs/intro/windows-path-env-var-note.rst @@ -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 `` instead (for example, - ``python -m scrapy startproject myproject``). + As a workaround, run ``python -m scrapy `` (for example, ``python + -m scrapy startproject myproject``).