Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: make pip install invocations zsh-compatible #107

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <path to .fig file> <path to store the .sketch file>`
3. Open the resulting .sketch document in Sketch

Expand Down Expand Up @@ -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
```

Expand All @@ -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:
Expand Down
Loading