From 8e5a8e67129dd75e02549d93c0bbb7a8726cf565 Mon Sep 17 00:00:00 2001 From: Steven Stockhamer Date: Sun, 19 Jul 2020 20:44:16 -0400 Subject: [PATCH 1/2] Update install.rst MacOS now uses zsh by default. Square brackets must be escaped in zsh --- docs/user/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/install.rst b/docs/user/install.rst index b3d4813..6c4587d 100644 --- a/docs/user/install.rst +++ b/docs/user/install.rst @@ -25,7 +25,7 @@ Using pip After :ref:`installing the dependencies `, which include `Tkinter`_ and `ghostscript`_, you can simply use pip to install Camelot:: - $ pip install camelot-py[cv] + $ pip install 'camelot-py[cv]' .. _Tkinter: https://wiki.python.org/moin/TkInter .. _ghostscript: https://www.ghostscript.com From e5b143d9a832654795c9739d7b74db703ddf64da Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Mon, 20 Jul 2020 15:59:42 +0530 Subject: [PATCH 2/2] Update install instructions --- CONTRIBUTING.md | 2 +- README.md | 4 ++-- docs/dev/contributing.rst | 2 +- docs/user/install.rst | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 115ee21..8bb8371 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,7 +23,7 @@ A great way to start contributing to Camelot is to pick an issue tagged with the To install the dependencies needed for development, you can use pip:
-$ pip install camelot-py[dev]
+$ pip install "camelot-py[dev]"
 
Alternatively, you can clone the project repository, and install using pip: diff --git a/README.md b/README.md index 1fa8be4..74cef27 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ $ conda install -c conda-forge camelot-py After [installing the dependencies](https://camelot-py.readthedocs.io/en/master/user/install-deps.html) ([tk](https://packages.ubuntu.com/bionic/python/python-tk) and [ghostscript](https://www.ghostscript.com/)), you can simply use pip to install Camelot:
-$ pip install camelot-py[cv]
+$ pip install "camelot-py[cv]"
 
### From the source code @@ -113,7 +113,7 @@ $ git clone https://www.github.com/camelot-dev/camelot You can install the development dependencies easily, using pip:
-$ pip install camelot-py[dev]
+$ pip install "camelot-py[dev]"
 
### Testing diff --git a/docs/dev/contributing.rst b/docs/dev/contributing.rst index 2fe37c9..473741f 100644 --- a/docs/dev/contributing.rst +++ b/docs/dev/contributing.rst @@ -37,7 +37,7 @@ Setting up a development environment To install the dependencies needed for development, you can use pip:: - $ pip install camelot-py[dev] + $ pip install "camelot-py[dev]" Alternatively, you can clone the project repository, and install using pip:: diff --git a/docs/user/install.rst b/docs/user/install.rst index 6c4587d..422f118 100644 --- a/docs/user/install.rst +++ b/docs/user/install.rst @@ -25,7 +25,7 @@ Using pip After :ref:`installing the dependencies `, which include `Tkinter`_ and `ghostscript`_, you can simply use pip to install Camelot:: - $ pip install 'camelot-py[cv]' + $ pip install "camelot-py[cv]" .. _Tkinter: https://wiki.python.org/moin/TkInter .. _ghostscript: https://www.ghostscript.com