1.1. Installation

1.1.1. pip

You can install Fringes directly from PyPI with pip:

pip install fringes

1.1.2. From Source

To get access to the very latest features and bugfixes you have three choices:

  1. Clone Fringes from GitHub with git and install it from source wit pip:

    git clone https://github.com/comimag/fringes
    cd fringes
    pip install .
    
  2. Directly install Fringes from GitHub with pip:

    pip install git+git://github.com/comimag/fringes.git@main
    

    You can change main of the above command to any branch name, commit or version tag you prefer.

  3. You can simply place the fringes folder someplace importable, such as inside the root of another project. Fringes does not need to be “built” or compiled in any way.