[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Jacal-discuss] Problem to run Jacal
From: |
Aubrey Jaffer |
Subject: |
Re: [Jacal-discuss] Problem to run Jacal |
Date: |
Wed, 19 Dec 2012 00:39:05 -0500 (EST) |
| From: =?ISO-8859-1?Q?Germ=E1n?= "A. Arias" <address@hidden>
| Date: Sun, 16 Dec 2012 12:49:05 -0600
|
| Hi, I trying to run jacal but I have some problems. First with GNU
| MIT/Scheme I get the error:
|
| address@hidden:~$ jacal
| scheme -load /usr/local/lib/slib/mitscheme.init
| -load /usr/local/lib/jacal/go
| MIT/GNU Scheme running under GNU/Linux
| Type `^C' (control-C) followed by `H' to obtain information about
| interrupts.
|
| Copyright (C) 2011 Massachusetts Institute of Technology
| This is free software; see the source for copying conditions. There is
| NO
| warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
| PURPOSE.
|
| Image saved on Tuesday November 8, 2011 at 10:40:30 PM
| Release 9.1.1 || Microcode 15.3 || Runtime 15.7 || SF 4.41 ||
| LIAR/i386 4.118
| Edwin 3.116
| ;Loading "/usr/local/lib/slib/mitscheme.init"...
| ; Loading "/usr/local/lib/slib/require.scm"... done
| ;... done
| ;Loading "/sr/local/lib/jacal/go.scm"...
| ; Loading "/usr/local/lib/jacal/math.scm"...
| ; Loading "/usr/local/lib/jacal/toploads.scm"...
| ; Loading "/usr/local/lib/slib/mklibcat.scm"...
| ;Unable to open file "/usr/local/lib/mit-scheme-i386/slibcat" because:
| Permission denied.
| ;To continue, call RESTART with an option number:
| ; (RESTART 3) => Try to open the same file again.
| ; (RESTART 2) => Try to open a different file.
| ; (RESTART 1) => Return to read-eval-print level 1.
|
| 2 error>
|
| The file "/usr/local/lib/mit-scheme-i386/slibcat" isn't present on
| MIT/Scheme 9.1.1.
You need to install packages in directories where you have write
permission. Assuming your home directory is /home/german/, the
following sequence should work:
(cd slib; ./configure --prefix=/home/german/; make install)
(cd jacal; ./configure --prefix=/home/german/; make install)
If /home/german/bin is in your PATH variable, then you can run jacal
with the command "jacal".
Alternatively, have the person who created /usr/local/lib/slib/ run
'make catalogs' from that directory.