Mathics - a free, light-weight alternative to Mathematica
10K+
While Wolfram Alpha is great when I have no full Mathematica nearby, it is a little bit slow and too glorious. Python or Mathics come to rescue! Unfortunately, mathics.net is abysmally sluggish. So the choice is to run Mathics within Docker (on private Deis).
Run it locally with:
docker run --rm -ti -p 8000:8000 arkadi/mathics
Open localhost:8000.
Run it on Deis:
deis create mathics
deis pull arkadi/mathics
Or build your own:
export DEV_REGISTRY=docker-registry.your.com:5000
docker build -t arkadi/mathics:latest .
docker tag arkadi/mathics $DEV_REGISTRY/arkadi/mathics
docker push $DEV_REGISTRY/arkadi/mathics
deis create mathics
deis pull $DEV_REGISTRY/arkadi/mathics
Or build directly on Deis:
deis create mathics
git push deis master
Source repository on GitHub.
Content type
Image
Digest
sha256:0c4907db3…
Size
132.9 MB
Last updated
almost 11 years ago
docker pull arkadi/mathics