Skip Navigation

Mathics - Ein freies Computeralgebrasystem (CAS)

Der Schockwellenreiter bezeichnet Mathics als "freien Mathematica-Klon" und beschreibt es als

[...] ein freies (GPL), leichtgewichtiges Computer-Algebra-System mit einer Mathematica-kompatiblen Syntax und Mathematica-kompatiblen Funktionen. Mathics ist in Python implementiert und basiert zum großen Teil auf der SymPy-Bibliothek.


Meine Installation auf Debian 11 ohne Docker
sudo apt-get install python3-dev default-libmysqlclient-dev build-essential

mkdir mathics3
cd mathics3
python3.9 -m venv env
source env/bin/activate

mkdir download
pip3 download -d download/ pip
pip3 download -d download/ wheel
pip3 install download/*

pip3 download -d download/ Mathics-omnibus
pip3 install --force-reinstall download/*

deactivate

CLI starten
cd mathics3
source env/bin/activate
mathics

## Spaß mit `In` und `Out`

## Beenden
Ctrl-D
deactivate

Webapp starten
cd mathics3
source env/bin/activate
mathicsserver

## Im Browser http://localhost:8000/ öffnen

## Benden
Ctrl-C
deactivate


Bildschirmfoto der mitgelieferten Demo im Browser:

Mehr Bildschirmfotos


Links:

6

You're viewing a single thread.

6 comments
You've viewed 6 comments.