Simple app to let you find the equations from a graph
- Create a virtual environment.
user@computer:.../CurveFinder$ python -m venv ./venv
- Activate the virtual environment.
user@computer:.../CurveFinder$ source ./venv/bin/activate
- Install the dependencies from
requirements.txt
.user@computer:.../CurveFinder$ pip install -r requirements.txt
- Build the executable.
user@computer:.../CurveFinder$ python build.py -b
- The executable is now available in the
./dist
directory.