CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

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

Views: 418346
1
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
%%
3
%W install.tex GAP documentation D�rte Feichtenschlager
4
%%
5
%H $Id: install.tex, v0.5 2010/05/31 09:30:00 gap SymbCompCC $
6
%%
7
8
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9
\Chapter{Installing and Loading the SymbCompCC Package}
10
11
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12
\Section{Installing the SymbCompCC Package}
13
14
The following installation instruction is for unix although the package
15
should work as well with any other operating system.
16
17
To install the {\SymbCompCC} package, unpack the archive file, which should
18
have a name of the form `SymbCompCC-<XXX>.tar.bz2' for some version number
19
<XXX>, by typing
20
21
\){\kernttindent}bunzip2 SymbCompCC-<XXX>.tar.bz2
22
\){\kernttindent}tar -xvf SymbCompCC-<XXX>.tar
23
24
in the `pkg' directory of your version of {\GAP}~4, or in a directory
25
named `pkg' (e.g.~in your home directory). (The only essential difference
26
with installing {\SymbCompCC} in a `pkg' directory different to the {\GAP}~4
27
home directory is that one must start {\GAP} with the `-l' switch,
28
e.g.~if your private `pkg' directory is a subdirectory of `mygap' in your
29
home directory you might type:
30
31
%begintt
32
\){\kernttindent}gap -l ";<myhomedir>/mygap"
33
%endtt
34
35
where <myhomedir> is the path to your home directory, which (since
36
{\GAP}~4.3) may be replaced by a tilde. The empty path before the
37
semicolon is filled in by the default path of the {\GAP}~4 home
38
directory.)
39
40
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41
\Section{Loading the SymbCompCC Package}
42
43
To use the {\SymbCompCC} Package you have to request it explicitly. This is
44
done by calling
45
46
\beginexample
47
gap> LoadPackage("SymbCompCC");
48
true
49
\endexample
50
51
The `LoadPackage' command is described in Section~"ref:LoadPackage" in
52
the {\GAP} Reference Manual.
53
54
If you want to load the {\SymbCompCC} package by default, you can put the
55
`LoadPackage' command into your `.gaprc' file (see Section~"ref:The
56
.gaprc file" in the {\GAP} Reference Manual).
57
58
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
59
%%
60
%E
61
62