Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
| Download
GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
Project: cocalc-sagemath-dev-slelievre
Views: 418346#!/bin/sh # usage: configure gappath # this script creates a `Makefile' from `Makefile.in' if [ "x$1" = "x" ]; then GAPPATH=../..; echo "Using ../.. as default GAP path"; else GAPPATH=$1; fi if [ -f "$GAPPATH/sysinfo.gap" ]; then echo "$GAPPATH/sysinfo.gap found" else echo "Please give correct GAP path as argument (and make sure that GAP" echo "is already properly installed)." exit fi rm -f Makefile . "$GAPPATH/sysinfo.gap" sed -e "s;@GAPARCH@;$GAParch;g" -e "s;@GAPPATH@;$GAPPATH;g" Makefile.in >Makefile echo "Makefile successfully created." echo "Done. Now call 'make'"