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

website/docs: refactor pip to pipx on linux and improve styling #13506

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
28 changes: 15 additions & 13 deletions website/docs/developer-docs/setup/full-dev-environment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,34 +45,36 @@ values={[

<TabItem value="mac">
To install the native dependencies on macOS, run:

```sh
$ pip install poetry poetry-plugin-shell
$ brew install libxmlsec1 libpq krb5 # Required development libraries,
$ brew install postgresql redis node@22 golangci-lint # Required CLI tools
```
```

</TabItem>

<TabItem value="linux">
To install native dependencies on Debian or Ubuntu, run:
To install native dependencies on Debian or Ubuntu, run:

```sh
$ pip install poetry poetry-plugin-shell
$ sudo apt-get install libgss-dev krb5-config libkrb5-dev postgresql-server-dev-all
$ sudo apt-get install postresql redis
```
```sh
$ pipx install poetry poetry-plugin-shell
$ sudo apt-get install libgss-dev krb5-config libkrb5-dev postgresql-server-dev-all
$ sudo apt-get install postresql redis
```

Adjust your needs as required for other distributions such as Red Hat, SUSE, or Arch.
Adjust your needs as required for other distributions such as Red Hat, SUSE, or Arch.

Install golangci-lint locally [from the site
instructions](https://golangci-lint.run/welcome/install/#other-ci).
Install golangci-lint locally [from the site
instructions](https://golangci-lint.run/welcome/install/#other-ci).

</TabItem>

<TabItem value="windows">
<TabItem value="windows">

[We request community input on running the full dev environment on Windows]
</TabItem>

</TabItem>

</Tabs>

Expand Down
Loading