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%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%1%%2%W install.tex GAP documentation D�rte Feichtenschlager3%%4%H $Id: install.tex, v0.5 2010/05/31 09:30:00 gap SymbCompCC $5%%67%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%8\Chapter{Installing and Loading the SymbCompCC Package}910%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%11\Section{Installing the SymbCompCC Package}1213The following installation instruction is for unix although the package14should work as well with any other operating system.1516To install the {\SymbCompCC} package, unpack the archive file, which should17have a name of the form `SymbCompCC-<XXX>.tar.bz2' for some version number18<XXX>, by typing1920\){\kernttindent}bunzip2 SymbCompCC-<XXX>.tar.bz221\){\kernttindent}tar -xvf SymbCompCC-<XXX>.tar2223in the `pkg' directory of your version of {\GAP}~4, or in a directory24named `pkg' (e.g.~in your home directory). (The only essential difference25with installing {\SymbCompCC} in a `pkg' directory different to the {\GAP}~426home directory is that one must start {\GAP} with the `-l' switch,27e.g.~if your private `pkg' directory is a subdirectory of `mygap' in your28home directory you might type:2930%begintt31\){\kernttindent}gap -l ";<myhomedir>/mygap"32%endtt3334where <myhomedir> is the path to your home directory, which (since35{\GAP}~4.3) may be replaced by a tilde. The empty path before the36semicolon is filled in by the default path of the {\GAP}~4 home37directory.)3839%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%40\Section{Loading the SymbCompCC Package}4142To use the {\SymbCompCC} Package you have to request it explicitly. This is43done by calling4445\beginexample46gap> LoadPackage("SymbCompCC");47true48\endexample4950The `LoadPackage' command is described in Section~"ref:LoadPackage" in51the {\GAP} Reference Manual.5253If you want to load the {\SymbCompCC} package by default, you can put the54`LoadPackage' command into your `.gaprc' file (see Section~"ref:The55.gaprc file" in the {\GAP} Reference Manual).5657%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%58%%59%E606162