Skip to content

hcrahul/Mathstep

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mathstep

MathStep is a step by step calculator for mathematical problems.

Setup

Use the package manager pip to install all the library from requirements.txt.

pip install -r requirements.txt

or

pip3 install -r requirements.txt

Run the Server

After that completes you can run the app with:

pip run.py

or

pip3 run.py

Open in the browser

http://127.0.0.1:5000/

Gotchas

If 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_template

You can fix it with:

pip uninstall flask && python -m pip install flask
pip uninstall flask && python3 -m pip install flask

Contributing

Pull 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.

About

MathStep is a step by step calculator for mathematical problems.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 41.6%
  • HTML 37.3%
  • JavaScript 18.6%
  • Python 2.5%