diff --git a/docs/contribute/01_environment.qmd b/docs/contribute/01_environment.qmd index b2946b8c5745..8b7f9d3828cc 100644 --- a/docs/contribute/01_environment.qmd +++ b/docs/contribute/01_environment.qmd @@ -18,43 +18,6 @@ the `conda/mamba` setup and refer to the comment related to `arm64` architectures. ::: -## pip - -::: {.callout-warning} -## `pip` will not handle installation of system dependencies - -`pip` will not install system dependencies needed for some packages such as `psycopg2` and `kerberos`. - -For a better development experience see the `conda/mamba` or `nix` setup instructions. -::: - -1. [Install `gh`](https://cli.github.com/manual/installation) - -1. Fork and clone the ibis repository: - - ```sh - gh repo fork --clone --remote ibis-project/ibis - ``` - -1. Change directory into `ibis`: - - ```sh - cd ibis - ``` - -1. Install development dependencies - - ```sh - pip install 'poetry==1.8.1' - pip install -r requirements-dev.txt - ``` - -1. Install ibis in development mode - - ```sh - pip install -e '.[all]' - ``` - ## Conda/Mamba ### Support matrix [^conda-callout] @@ -202,6 +165,44 @@ for manager, params in managers.items(): This will launch a `bash` shell with all of the required dependencies installed. This may take a while due to artifact download from the cache. + +## pip + +::: {.callout-warning} +## `pip` will not handle installation of system dependencies + +`pip` will not install system dependencies needed for some packages such as `psycopg2` and `kerberos`. + +For a better development experience see the `conda/mamba` or `nix` setup instructions. +::: + +1. [Install `gh`](https://cli.github.com/manual/installation) + +1. Fork and clone the ibis repository: + + ```sh + gh repo fork --clone --remote ibis-project/ibis + ``` + +1. Change directory into `ibis`: + + ```sh + cd ibis + ``` + +1. Install development dependencies + + ```sh + pip install 'poetry==1.8.1' + pip install -r requirements-dev.txt + ``` + +1. Install ibis in development mode + + ```sh + pip install -e '.[all]' + ``` + ::: ## Building the docs