From a22b5dd616b6344cdba798659e1293d0d9a6d230 Mon Sep 17 00:00:00 2001 From: ytl0623 Date: Fri, 17 Nov 2023 16:18:07 +0800 Subject: [PATCH] =?UTF-8?q?Replace=20single=20quotation=20marks=20with=20d?= =?UTF-8?q?ouble=20quotation=20marks=20to=20install=E2=80=A6=20(#7234)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … MONAI with all dependencies on Windows Fixes #6118 ### Description The Windows shell doesn't recognize single quotes to delimit a string at all, so on Windows you'll need to use double quotes. It's the same command no matter which type of quotes you use; after the shell does its processing, the argument is passed to pip with the quotation marks already removed. ### Types of changes - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. Signed-off-by: ytl0623 Signed-off-by: Mark Graham --- docs/source/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/installation.md b/docs/source/installation.md index 88107c9487..d77253f0f9 100644 --- a/docs/source/installation.md +++ b/docs/source/installation.md @@ -228,7 +228,7 @@ Alternatively, to install all optional dependencies: ```bash git clone https://github.com/Project-MONAI/MONAI.git cd MONAI/ -pip install -e '.[all]' +pip install -e ".[all]" ``` To install all optional dependencies with `pip` based on MONAI development environment settings: