Quickstart

Installation

Install the latest official release:

$ pip install --user gp-libs

Upgrade an existing install:

$ pip install --user --upgrade gp-libs

Developmental releases

New versions of gp-libs are published to PyPI as alpha, beta, or release candidates. Their versions include markers such as a1, b1, and rc1, respectively. 1.10.0b4 means the fourth beta release of 1.10.0 before general availability.

  • pip:

    $ pip install --user --upgrade --pre gp-libs
    
  • pipx:

    $ pipx install --suffix=@next 'gp-libs' --pip-args '\--pre' --force
    
  • uv:

    $ uv add gp-libs --prerelease allow
    
  • uvx:

    $ uvx --from 'gp-libs' --prerelease allow gp-libs
    

Install from trunk when you need unreleased work. These installs can break:

  • pip:

    $ pip install --user -e git+https://github.com/git-pull/gp-libs.git#egg=gp-libs
    
  • pipx:

    $ pipx install --suffix=@master 'gp-libs @ git+https://github.com/git-pull/gp-libs.git@master' --force
    
  • uv:

    $ uv add gp-libs --from git+https://github.com/git-pull/gp-libs.git