diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2019-05-15 01:43:20 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2019-05-15 01:43:20 +0100 |
commit | e60e1c2b1baf8891e1af010af491faf422eacd43 (patch) | |
tree | e1f63a10e6ca53a4511cbf1836ddcfc5f523474c /doc/install.texi | |
parent | ab3e17daf61d5421fc8e72edadb8d2fa611329c9 (diff) | |
download | geiser-guile-e60e1c2b1baf8891e1af010af491faf422eacd43.tar.gz geiser-guile-e60e1c2b1baf8891e1af010af491faf422eacd43.tar.bz2 |
Chicken 5 installation instructions
Diffstat (limited to 'doc/install.texi')
-rw-r--r-- | doc/install.texi | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/install.texi b/doc/install.texi index 2a94216..b363dc1 100644 --- a/doc/install.texi +++ b/doc/install.texi @@ -88,13 +88,22 @@ package-install-file}. @cindex Chicken @cindex Chicken installation If you plan to use Chicken, you'll need also to fire a terminal and -configure a couple of Chicken eggs: +configure a couple of Chicken eggs. For Chicken 4 that would be: @example $ chicken-install -s apropos chicken-doc $ cd `csi -p '(chicken-home)'` $ curl http://3e8.org/pub/chicken-doc/chicken-doc-repo.tgz | sudo tar zx @end example +while Chicken 5 prefers: +@example +$ chicken-install -s apropos chicken-doc srfi-18 srfi-1 +$ cd `csi -R chicken.platform -p '(chicken-home)'` +$ curl https://3e8.org/pub/chicken-doc/chicken-doc-repo-5.tgz | sudo tar zx +@end example + +(see also @uref{https://wiki.call-cc.org/emacs#geiser, Chicken's wiki}). + With that, you are pretty much all set up. See @ref{The REPL} to start using Geiser. |