简体   繁体   English

如何在Redhat Linux中安装CLISP

[英]How to install CLISP in Redhat Linux

I was searching, how to install CLISP ( http://www.clisp.org ) in RedHat Linux. 我正在搜索如何在RedHat Linux中安装CLISP( http://www.clisp.org )。 In the CLISP web site Fedora installation link is broken. 在CLISP网站上,Fedora的安装链接已断开。

yum install clisp doesn't work even though sudo apt-get install clisp in Ubuntu. 即使在Ubuntu中使用sudo apt-get install clispyum install clisp也不起作用。

Anyone there, installed CLISP in RedHat Linux? 有人在RedHat Linux中安装CLISP吗?

If you just want a CL-implementation you can use sbcl which will run standard CL-code as good as clisp. 如果只需要CL实现,则可以使用sbcl ,它将运行与sbcl一样好的标准CL代码。

If you want clisp download the tarball and follow the instructions in ihe INSTALL file. 如果要剪辑,请下载压缩文件,然后按照INSTALL文件中的说明进行操作。

There is a thread in the CentOS forums about a yum installation alternative, but it might not work on recent releases. 一个线程在大约百胜安装替代CentOS的论坛,但它可能无法在近期发布工作。

I just installed it on Fedora 18. Repo: 我刚刚将其安装在Fedora 18上。

http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/18/Everything/x86_64/os/Packages/c/ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/18/Everything/x86_64/os/Packages/c/

It has been moved to 'archives.fedoraproject.org' because it's old. 由于它很旧,因此已移至“ archives.fedoraproject.org”。 So if you have an old fedora you might have to add this repo to your yum repos. 因此,如果您有旧的软呢帽,则可能必须将此仓库添加到yum仓库中。

You can build from source, I just wanted to learn a little bit about lisp and this allowed me to get setup and get started: 您可以从源代码构建,我只是想学习一些有关Lisp的知识,这使我可以开始设置并开始:

You can find releases here: ftp://ftp.gnu.org/pub/gnu/clisp/release/ 您可以在此处找到发行版本: ftp : //ftp.gnu.org/pub/gnu/clisp/release/

wget ftp://ftp.gnu.org/pub/gnu/clisp/release/2.49/clisp-2.49.tar.gz 
tar xvfz clisp-2.49.tar.gz
cd clisp-2.49 
./configure --prefix=$HOME --ignore-absence-of-libsigsegv 
cd ./src 
make install

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM