From 9677c8d89b0c29499a46ef6c808017e2303373eb Mon Sep 17 00:00:00 2001 From: Younes Strittmatter Date: Wed, 2 Oct 2024 22:14:29 -0400 Subject: [PATCH] docs: add quotation to pip install (#3051) --- README.rst | 4 ++-- docs/source/index.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index a534c0043b8..5bd44d8454d 100644 --- a/README.rst +++ b/README.rst @@ -172,13 +172,13 @@ To run the tutorial locally, you must run python 3.5 and install additional pack :: - pip install psyneulink[tutorial] + pip install "psyneulink[tutorial]" or if you downloaded the source: :: - pip install .[tutorial] + pip install ".[tutorial]" To access the tutorial, make sure you fulfill the requirements mentioned above, download the tutorial notebook (/tutorial/PsyNeuLink Tutorial.ipynb), then run the terminal command diff --git a/docs/source/index.rst b/docs/source/index.rst index 9bc213049ea..cacebb5ea38 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -211,13 +211,13 @@ To run the tutorial locally, you must run python 3.6 and install additional pack :: - pip install psyneulink[tutorial] + pip install "psyneulink[tutorial]" or if you downloaded the source: :: - pip install .[tutorial] + pip install ".[tutorial]" To access the tutorial, make sure you fulfill the requirements