Skip to content

BrunoB81HK/CurveExtractor

Repository files navigation

CurveFinder

Build status

Simple app to let you find the equations from a graph

Building with pyinstaller

  1. Create a virtual environment.
    user@computer:.../CurveFinder$ python -m venv ./venv
  2. Activate the virtual environment.
    user@computer:.../CurveFinder$ source ./venv/bin/activate
  3. Install the dependencies from requirements.txt.
    user@computer:.../CurveFinder$ pip install -r requirements.txt
  4. Build the executable.
    user@computer:.../CurveFinder$ python build.py -b
  5. The executable is now available in the ./dist directory.