rtoy / maxima

A Clone of Maxima's repo
Other
0 stars 0 forks source link

Centos 8 readline version #1898

Open rtoy opened 1 week ago

rtoy commented 1 week ago

Imported from SourceForge on 2024-07-05 10:25:38 Created by normanstevens58 on 2020-05-12 14:16:17 Original: https://sourceforge.net/p/maxima/bugs/3634


Centos 8 uses readline version 7 so the maxima rpms cannot be installed.

rtoy commented 1 week ago

Imported from SourceForge on 2024-07-05 10:25:39 Created by robert_dodier on 2020-06-03 17:50:50 Original: https://sourceforge.net/p/maxima/bugs/3634/#e169


I don't know a way to fix up the situation for the existing rpms, but it's very easy to build Maxima from source on Linux systems. The most straightforward way which I know is to get a tar.gz (also available for download here on SF) and then

$ tar xvzf maxima-foo.tar.gz
$ cd maxima-foo
$ ./configure --enable-somelisp
$ make
$ make install

Several Lisp implementations will work; I recommend SBCL. You'll have to install that separately.