Downloading SINGULAR Archives
To install Singular on a Unix (inluding Linux and Mac Os X) platform, you need the following archiv:
Singular-x-x-x-architecture.tar.gz(system dependent)
where you have to replace the following:
- "x-x-x" has to be replaced by the version number of the Singular system to be installed
- "architecture" has to be replaced according to the following table:
These (and other) archives can be downloaded from ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/UNIX.Architecture Description of System ix86-Linux32-bit Linux System on Intel Pentium (or compatible) x86_64-Linux64-bit Linux System on AMD 64 (or compatible) ix86-freebsd32-bit FreeBSD on Intel Pentium (or compatible)
A mirror is at https://www.singular.uni-kl.de/ftp/pub/Math/Singular/UNIX/ .
Please contact us if you cannot find an archive appropriate for your architecture.
Installing SINGULAR
Make sure that you have approximately 12MByte of free disk space and follow these steps:
- Change to the directory where you wish to install Singular, for example:
cd /usr/local |
- (this requires superuser privileges), or
mkdir install; cd install |
- (requires no superuser privileges).
Singular specific subdirectories will be created in such a way that multiple versions and multiple architecture dependent files of Singular can peaceably coexist under the same
/usr/localtree. - Unpack the archiv:
gzip -dc path-to-your-download-folder/Singular-x-x-x-architecture.tar.gz | tar -pxf - |
- (Do not forget to replace the string architecture as above.)
For the executable to work, the directory layout must look pretty much like this; the executable looks for "sibling" directories at run-time to figure out where its Singular libraries and on-line documentation files are. These constraints on the local directory layout are necessary to avoid having to hard-code pathnames into the executables, or require that environment variables be set before running the executable. In particular, you must not move or copy the Singular executables to another place, but use soft-links instead.
The following steps are optional:
-
Arrange that typing
If you have superuser privileges, do:Singularat the shell prompt starts up the installed Singular executable.
Otherwise, append the directoryln -s `pwd`path-to-your-installation-folder/bin/Singular /usr/local/bin/Singular-x-x-xln -s `pwd`path-to-your-installation-folder/bin/ESingular /usr/local/bin/ESingular-x-x-xln -s /usr/local/bin/Singular-x-x-x /usr/local/bin/Singularln -s /usr/local/bin/ESingular-x-x-x /usr/local/bin/ESingular`pwd`path-to-your-installation-folder/bin/to your$PATHenvironment variable. For thecsh(or,tcsh) shell do:
For theset path=(`pwd`path-to-your-installation-folder/bin $path)bash(or,ksh) shell do:export PATH=`pwd`path-to-your-installation-folder/bin/:$PATHYou might also want to adjust your personal start-up files (
~/.cshrcforcsh,~/.tcshrcfortcsh, or~/.profileforbash) accordingly, so that the$PATHvariable is set automatically each time you login.IMPORTANT: Do never move or copy the file
bin/Singularto another place, but use soft-links instead. -
If you want to use any of following features of Singular, make sure that the respective programs are installed on your system:
Most of these programs can be downloaded from ftp://jim.mathematik.uni-kl.de/pub/Math/Singular/utils/.A mirror is atFeature Requires running ESingular, orSingularwithin EmacsEmacs version 20 or higher, or, XEmacs version 20.3 or higher (ESingular is only included in the Linux distribution, on other Unix platforms you can download the Singular emacs lisp files but we give no warranties for specific platforms). on-line infohelpinfo, or tkinfo texinfo browser programs TAB completion and history mechanism of ASCII-terminal interface shared readline library, i.e. /usr/lib/libreadline.sovisualization of curves and surfaces surf version 0.9 or higher (only available for Linux and Solaris). -
Assure that the Singular manual can be accessed from stand-alone texinfo browser programs such as
Add the lineinfoorEmacs:
to your system-wide* Singular:(singular.hlp). A system for polynomial computationsdirfile (usually/usr/info/diror/usr/local/info/dirand copy or soft-link the fileshare/singular/info/singular.hlpto the directory of yourdirfile.
This is not necessary for the use of the help system from withinSingular.
Customize the on-line help system:
By default, on-line help is displayed in the first available help browser defined in share/singular/LIB/help.cnf.
This behavior can be customized in several ways using the Singular commands system("--browser",) and system("--allow-net", 1) (or, by starting up Singular with the respective command line options).
In particular, creating the file share/singular/LIB/.singularrc and putting the Singular command system("--allow-net", 1); in it, allows the on-line help system to fetch its html pages from Singular's web site in case its local html pages are not found.
We refer to the online manual for more details on customizing the on-line help system.
Troubleshooting
-
General: Singular can not find its libraries or on-line help
- Make sure that you have read and/or execute permission the files and directories of the Singular distribution. If in doubt,
cdto the directory where you unpacked Singular, and do (as root, if necessary):chmod -R a+rX . - Start up Singular, and issue the command
system("Singular");. If this does not return the correct and expanded location of the Singular executable, then you found a bug in Singular, which we ask you to report (see below). - Check whether the directories containing the libraries and on-line help files can be found by Singular: If
$bindirdenotes the directory where the Singular executable resides, then Singular looks for library files as follows:
(0) the current directory
(1) all dirs of the environment variable SINGULARPATH
(2)$bindir/../share/singular/LIB
The on-lineinfofiles need to be at$bindir/../share/singular/infoand thehtmlpages at$bindir/../share/singular/html.
You can inspect the found library and
info/htmldirectories by starting up Singular with the--versionoption, or by issuing the Singular commandsystem("--version"); . - Make sure that you have read and/or execute permission the files and directories of the Singular distribution. If in doubt,
-
For any other troubles:
Please send an email to singular@mathematik.uni-kl.de and include the header which is displayed by starting up Singular with the-voption, and a description of your machine (issue the commanduname -aon your shell) in your report.
Download 