Install Lisp Interpreter in Debian Jessie












2














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.










share|improve this question





























    2














    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.










    share|improve this question



























      2












      2








      2







      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.










      share|improve this question















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 12 at 11:28









      GAD3R

      25.3k1750106




      25.3k1750106










      asked Jul 26 '15 at 18:11









      blade

      14217




      14217






















          3 Answers
          3






          active

          oldest

          votes


















          5














          SBCL is included in Debian too, and it's a really popular Common Lisp implementation.






          share|improve this answer





























            1














            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





            share|improve this answer































              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





              share|improve this answer





















                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
                });


                }
                });














                draft saved

                draft discarded


















                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









                5














                SBCL is included in Debian too, and it's a really popular Common Lisp implementation.






                share|improve this answer


























                  5














                  SBCL is included in Debian too, and it's a really popular Common Lisp implementation.






                  share|improve this answer
























                    5












                    5








                    5






                    SBCL is included in Debian too, and it's a really popular Common Lisp implementation.






                    share|improve this answer












                    SBCL is included in Debian too, and it's a really popular Common Lisp implementation.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jul 26 '15 at 18:27









                    Chris Jester-Young

                    1663




                    1663

























                        1














                        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





                        share|improve this answer




























                          1














                          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





                          share|improve this answer


























                            1












                            1








                            1






                            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





                            share|improve this answer














                            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






                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited May 12 at 11:17









                            P_Yadav

                            1,3673922




                            1,3673922










                            answered May 12 at 3:01









                            Sounchio Serge

                            111




                            111























                                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





                                share|improve this answer


























                                  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





                                  share|improve this answer
























                                    0












                                    0








                                    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





                                    share|improve this answer












                                    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






                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Dec 12 at 11:27









                                    GAD3R

                                    25.3k1750106




                                    25.3k1750106






























                                        draft saved

                                        draft discarded




















































                                        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.




                                        draft saved


                                        draft discarded














                                        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





















































                                        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







                                        Popular posts from this blog

                                        Morgemoulin

                                        Scott Moir

                                        Souastre