Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 754 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 754 Bytes

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.