Skip to content

Standalone

In this guide, we will walk you through the process of installing faser as as standalone application. This installation method is suitable for users who want to have a prepackaged faser application that can be run from the command line and from their python environment of choice.

Pre-requisites

In order to install faser as a standalone application, you will need the following:

  • Python 3.9 or higher
  • A package manager (pip, conda, poetry, uv)

Installation

The installation process for faser as a standalone application is quite simple. Follow the steps below to get started.

  1. Create a python environment

    Using a tool like conda, poetry or uv (use uv, it’s the best), create a virtual environment in the directory where you want to install faser.

    Terminal window
    python -m venv .venv
  2. Activate the environment

    Activate the virtual environment using the following command on linux/mac

    Terminal window
    source .venv/bin/activate

    or on windows

    Terminal window
    .venv\Scripts\activate
  3. Install faser and napari

    install Faser using

    Terminal window
    pip install "napari[pyqt5]" "faser[cli]"
  4. Run qtfaser

    Run the following command (inside your activated virtual environemnt) to start the standalone application

    Terminal window
    qtfaser