Installation
There are two different ways to install the FFT-Analyzer:
- Download the source code, install the packages from the
requirement.txtby navigating to the root directory and using the commandpip install -r requirements.txt, afterwards to start the app usepanel serve src\fft_analysator\app.py --autoreloadand navigate to the url given to you inside of the console in the browser of your choice. - Alternatively, you can download the source code and install the package by navigating to the root and using the command
pip install .. Afterwards you can start the app by importing it by doing:If you only want to use the API and are not interested in using the GUI, you can refer to the API documentation and should preferably choose option 2.from fft_analysator.app import App App().serve_app()