Skip to content

Commit

Permalink
correct pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcombessie committed Jun 2, 2023
1 parent d3872a9 commit 2ff288a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python-client/docs/guides/installation_library/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ In order to scan your model for vulnerabilities, you'll need to install the `gis
:::{tab-item} Windows

```sh
pip install giskard[scan] --user
pip install giskard --user
```

:::

:::{tab-item} Mac and Linux

```sh
pip install giskard[scan]
pip install giskard
```

:::
Expand Down Expand Up @@ -69,5 +69,5 @@ For instance, if you have dependency conflicts with `pandas`, please do:
```sh
pip uninstall giskard
pip uninstall pandas
pip install giskard[scan]
pip install giskard
```

0 comments on commit 2ff288a

Please sign in to comment.