Skip to content

Commit

Permalink
Remove "$" from bash examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kt474 committed Mar 3, 2025
1 parent 197ee42 commit 1975a78
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ To install from source download this repository and follow the next steps.

- Create a virtual environment
``` {.bash}
$ python3 -m venv .venv
python3 -m venv .venv
```
- Activate your virtual environment
``` {.bash}
$ source .venv/bin/activate
source .venv/bin/activate
```
- Install the dependencies
``` {.bash}
$ pip install -e .
pip install -e .
```
- Install the visualization dependencies
``` {.bash}
$ pip install -e ".[visualization]"
pip install -e ".[visualization]"
```
- Install the development dependencies
``` {.bash}
$ pip install -e ".[dev]"
pip install -e ".[dev]"
```

### Open an issue
Expand Down Expand Up @@ -197,7 +197,7 @@ stable and give a basic level of confidence during development.

To execute all unit tests, run:
``` {.bash}
$ make unit-test
make unit-test
```

##### 2. Integration tests
Expand All @@ -208,7 +208,7 @@ client and APIs work well together.

To execute all integration tests, run
``` {.bash}
$ make integration-test
make integration-test
```

###### Configuration
Expand Down

0 comments on commit 1975a78

Please sign in to comment.