Skip to content

Install

FPS can be installed through PyPI or conda-forge.

With pip

pip install fps[web]

With micromamba

We recommend using micromamba to manage conda-forge environments (see micromamba's installation instructions). First create an environment, here called my-env, and activate it:

micromamba create -n my-env
micromamba activate my-env
Then install fps.

micromamba install fps

Development install

You first need to clone the repository:

git clone https://github.com/jupyter-server/fps.git
cd fps
We recommend working in a conda environment. In order to build fps, you will need pip:
micromamba create -n fps-dev
micromamba activate fps-dev
micromamba install pip
Then install fps in editable mode:
pip install -e ".[web,test,docs]"