File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1717 mathics src = /usr/src/app/mathics
1818 --pythonpaht /usr/src/app
1919
20- -m | --mode {cli|ui} Start mathics in web-ui mode (ui), or in cli mode (cli). Default is cli.
20+ -m | --mode {cli|ui|gui|minimal } Start mathics in web-ui mode (ui or gui), cli mode (cli) or minimal . Default is cli.
2121 See: https://github.com/mathics/Mathics/wiki/Installing#running-mathics
2222
2323Params:
4848
4949case $mathics_mode in
5050 cli) mathicsscript $@ ;;
51- ui) mathicsserver -e $@ ;;
51+ minimal) mathics $@ ;;
52+ ui | gui) mathicsserver -e $@ ;;
5253 shell) /bin/bash ;;
5354 * ) echo " unknown mathics_mode=$mathics_mode . See '$script_cmd --help'" ; exit 2 ;;
5455esac
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ DOCKER=${DOCKER:- docker}
3+ $DOCKER run --rm -it --name mathics-cli -v /tmp:/usr/src/app/data mathicsorg/mathics --mode cli -- $@
You can’t perform that action at this time.
0 commit comments