From ad19d2d8ee37174dd34a8d84c793141fc18098bb Mon Sep 17 00:00:00 2001 From: Dmitry Rodionov Date: Thu, 29 Feb 2024 19:28:03 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A4=20README:=20make=20`pip=20install`?= =?UTF-8?q?=20command=20zsh-compatible?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Running these commands as is doesn't work in zsh as it treats square brackets as special characters Signed-off-by: Dmitry Rodionov --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b665bd6..b957d15 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ fig2sketch reads design data from a .fig file and converts it into data that Ske ### Using a release from PyPi -1. Install with `pip install fig2sketch[fast]` +1. Install with `pip install "fig2sketch[fast]"` 2. Run `fig2sketch ` 3. Open the resulting .sketch document in Sketch @@ -65,7 +65,7 @@ pip install maturin Now, you can proceed to install the performance improvements: ``` -pip install .[fast] +pip install ".[fast]" sh scripts/install_patched_orjson.sh ``` @@ -75,7 +75,7 @@ sh scripts/install_patched_orjson.sh Before running the tests for the first time, you'll need to install the dev requirements (within the virtual environment): ``` -pip install .[dev] +pip install ".[dev]" ``` Then, you can run the tests just executing this in the project root: