MathStep is a step by step calculator for mathematical problems.
Use the package manager pip to install all the library from requirements.txt.
pip install -r requirements.txtor
pip3 install -r requirements.txtAfter that completes you can run the app with:
pip run.pyor
pip3 run.pyIf you run in to the following error:
Traceback (most recent call last):
File "run.py", line 1, in <module>
from webapp import app
File "/Users/timothysmith/code/web/Open Source/Mathstep/webapp/app.py", line 1, in <module>
from flask import Flask, render_templateYou can fix it with:
pip uninstall flask && python -m pip install flaskpip uninstall flask && python3 -m pip install flaskPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.