Skip to content

Commit

Permalink
Add command options to install dependency. (#1141)
Browse files Browse the repository at this point in the history
* Add command options to install dependency.

* Remove escape sequence and update instruction.
  • Loading branch information
seyawudba authored Sep 15, 2024
1 parent 92643da commit 3ed61dd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions developer_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ python -m venv ./venv
pip install .[dev,test]
```

Please be informed to use escape characters or wrap the argument in quote as shown in the command below since the "[]" or "." may be treated as special characters leading to failure in finding matching files.

```shell
pip install '.[dev,test]'
```

Set up `pre-commit`, which will run some lightweight formatting and linting tasks on every commit.

```shell
Expand Down

0 comments on commit 3ed61dd

Please sign in to comment.