Install Lisp Interpreter in Debian Jessie
I convinced myself to learn Lisp. I'd like to know of a way to install a Lisp Interpreter on Debian(Jessie). I was reading about clisp but is not in the repositories of Debian.
debian software-installation lisp clisp
add a comment |
I convinced myself to learn Lisp. I'd like to know of a way to install a Lisp Interpreter on Debian(Jessie). I was reading about clisp but is not in the repositories of Debian.
debian software-installation lisp clisp
add a comment |
I convinced myself to learn Lisp. I'd like to know of a way to install a Lisp Interpreter on Debian(Jessie). I was reading about clisp but is not in the repositories of Debian.
debian software-installation lisp clisp
I convinced myself to learn Lisp. I'd like to know of a way to install a Lisp Interpreter on Debian(Jessie). I was reading about clisp but is not in the repositories of Debian.
debian software-installation lisp clisp
debian software-installation lisp clisp
edited Dec 12 at 11:28
GAD3R
25.3k1750106
25.3k1750106
asked Jul 26 '15 at 18:11
blade
14217
14217
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
SBCL is included in Debian too, and it's a really popular Common Lisp implementation.
add a comment |
You can use this command :
sudo apt-get install sbcl
Next, we set up Quicklisp, the package manager. This is similarly:
$ curl -o /tmp/ql.lisp http://beta.quicklisp.org/quicklisp.lisp
$ sbcl --no-sysinit --no-userinit --load /tmp/ql.lisp
--eval '(quicklisp-quickstart:install :path ".quicklisp")'
--quit
add a comment |
The GNU clisp is only available for debian Buster and Sid through apt
.
For debian Stretch and Jessie the GNU clisp can be installed through guix
package manager.
To install clisp:
$ guix package -i clisp
Sample output from debian Stretch:
clisp --version
GNU CLISP 2.49.60 (2017-06-25) (built 2208985201) (memory 3734909887)
Software: GNU C 5.5.0
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f218460%2finstall-lisp-interpreter-in-debian-jessie%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
SBCL is included in Debian too, and it's a really popular Common Lisp implementation.
add a comment |
SBCL is included in Debian too, and it's a really popular Common Lisp implementation.
add a comment |
SBCL is included in Debian too, and it's a really popular Common Lisp implementation.
SBCL is included in Debian too, and it's a really popular Common Lisp implementation.
answered Jul 26 '15 at 18:27
Chris Jester-Young
1663
1663
add a comment |
add a comment |
You can use this command :
sudo apt-get install sbcl
Next, we set up Quicklisp, the package manager. This is similarly:
$ curl -o /tmp/ql.lisp http://beta.quicklisp.org/quicklisp.lisp
$ sbcl --no-sysinit --no-userinit --load /tmp/ql.lisp
--eval '(quicklisp-quickstart:install :path ".quicklisp")'
--quit
add a comment |
You can use this command :
sudo apt-get install sbcl
Next, we set up Quicklisp, the package manager. This is similarly:
$ curl -o /tmp/ql.lisp http://beta.quicklisp.org/quicklisp.lisp
$ sbcl --no-sysinit --no-userinit --load /tmp/ql.lisp
--eval '(quicklisp-quickstart:install :path ".quicklisp")'
--quit
add a comment |
You can use this command :
sudo apt-get install sbcl
Next, we set up Quicklisp, the package manager. This is similarly:
$ curl -o /tmp/ql.lisp http://beta.quicklisp.org/quicklisp.lisp
$ sbcl --no-sysinit --no-userinit --load /tmp/ql.lisp
--eval '(quicklisp-quickstart:install :path ".quicklisp")'
--quit
You can use this command :
sudo apt-get install sbcl
Next, we set up Quicklisp, the package manager. This is similarly:
$ curl -o /tmp/ql.lisp http://beta.quicklisp.org/quicklisp.lisp
$ sbcl --no-sysinit --no-userinit --load /tmp/ql.lisp
--eval '(quicklisp-quickstart:install :path ".quicklisp")'
--quit
edited May 12 at 11:17
P_Yadav
1,3673922
1,3673922
answered May 12 at 3:01
Sounchio Serge
111
111
add a comment |
add a comment |
The GNU clisp is only available for debian Buster and Sid through apt
.
For debian Stretch and Jessie the GNU clisp can be installed through guix
package manager.
To install clisp:
$ guix package -i clisp
Sample output from debian Stretch:
clisp --version
GNU CLISP 2.49.60 (2017-06-25) (built 2208985201) (memory 3734909887)
Software: GNU C 5.5.0
add a comment |
The GNU clisp is only available for debian Buster and Sid through apt
.
For debian Stretch and Jessie the GNU clisp can be installed through guix
package manager.
To install clisp:
$ guix package -i clisp
Sample output from debian Stretch:
clisp --version
GNU CLISP 2.49.60 (2017-06-25) (built 2208985201) (memory 3734909887)
Software: GNU C 5.5.0
add a comment |
The GNU clisp is only available for debian Buster and Sid through apt
.
For debian Stretch and Jessie the GNU clisp can be installed through guix
package manager.
To install clisp:
$ guix package -i clisp
Sample output from debian Stretch:
clisp --version
GNU CLISP 2.49.60 (2017-06-25) (built 2208985201) (memory 3734909887)
Software: GNU C 5.5.0
The GNU clisp is only available for debian Buster and Sid through apt
.
For debian Stretch and Jessie the GNU clisp can be installed through guix
package manager.
To install clisp:
$ guix package -i clisp
Sample output from debian Stretch:
clisp --version
GNU CLISP 2.49.60 (2017-06-25) (built 2208985201) (memory 3734909887)
Software: GNU C 5.5.0
answered Dec 12 at 11:27
GAD3R
25.3k1750106
25.3k1750106
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f218460%2finstall-lisp-interpreter-in-debian-jessie%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown