Questions tagged [quicklisp]

Quicklisp is a library manager for Common Lisp

Quicklisp is a library manager for Common Lisp written by Zach Beane.

Information on it, including how it can be installed, can be found on its website

161 questions
0
votes
2 answers

LISP mapcar add 1 to each integer in a list

(defun add-1-all (list) (mapcar #'1+ '(list)) ) I am trying to pass a list of integers and add 1 to each integer in the list with mapcar, but I keep getting list is defined but never used. ; in: DEFUN ADD-1-ALL ; (DEFUN ADD-1-ALL (LIST)…
Lak Silva
  • 13
  • 2
0
votes
2 answers

How to make Quicklisp available to a script that runs from a Shebang?

I've been playing around with Quicklisp lately, and have this minor problem working with scripts with Shebangs. Setup I did the following: Downloaded quicklisp with curl https://beta.quicklisp.org/quicklisp.lisp -o /tmp/quicklisp.lisp Installed it…
myTerminal
  • 1,596
  • 1
  • 14
  • 31
0
votes
2 answers

Common Lisp Package Definition with Dependencies for Exploration at the REPL?

This is another take at the question of packages and systems especially for usage locally in personal projects (maybe similiar to HOWTO definition and usage of Common Lisp packages (libraries)? from 2014). What are recommendations for how to…
brittAnderson
  • 1,428
  • 11
  • 25
0
votes
0 answers

Installing Quicklisp on Maxima for maxima-jupyter

I'd like to try using maxima on jupyter (Windows). I was made aware that there is a maxima kernel for jupyter named maxima-jupyter (https://github.com/robert-dodier/maxima-jupyter). I installed maxima using chocolatey and tried to follow the steps…
0
votes
0 answers

Error in Installing linear algebra library (lla) for Common Lisp (CLISP) - Emacs SLIME, Quicklisp

The Common Lisp Cookbook - https://lispcookbook.github.io/cl-cookbook/arrays.html Linear Algebra library (lla) - https://github.com/tpapp/lla I tried to install Linear Algebra libary (lla) using quicklisp in Emacs' SLIME repl, but it didn't work.…
Larynx
  • 398
  • 1
  • 12
0
votes
1 answer

Why does Lisp code execute if entered line by line in the REPL but not if compiled in the buffer?

I am a noob Lisper and am attempting Adam Tornhill's Lisp for the Web tutorial using Portacle Emacs. I would very much appreciate an explanation of why the set-up code below will run happily and change the REPL cursor to RETRO-GAMES> if entered line…
E. rex
  • 45
  • 4
0
votes
1 answer

there is no package with name "QL". while installing clisp

I'm trying to install lisp in my laptop by following the instruction command and steps that is suggested this site : https://grishagin.com/lisp/windows10/2017/01/26/install-lisp-Windows10.html. I have done following steps : I've extract emacs in my…
Nervous Hero
  • 125
  • 8
0
votes
2 answers

How to properly use cxml/klacks library with quicklisp (and sbcl)?

Overview I'm trying to run a simplified version of this code, that needs the cxml and klacks library for XML parsing. (The concrete code is Chapter 47 of the book "The Art of Postgresql".) Since I know very little about (Common) Lisp/ASDF/Quicklisp,…
Attilio
  • 1,624
  • 1
  • 17
  • 27
0
votes
2 answers

Can't set up qtools in common-lisp SBCL

I'm a beginner in lisp and I'm unable to find out how to correctly use defpackage to load qtools (on arch linux). For simplicity if I run this example project in sbcl with loaded quicklisp…
W. Smith
  • 45
  • 7
0
votes
1 answer

Difficulty Quickloading :CL21 System with Quicklisp on Windows

The following error occurs during ql:quickload in SBCL > * (ql:quickload :cl21) To load "cl21": Load 1 ASDF system: > cl21 ; Loading "cl21" .....; gcc -m64 -o…
davypough
  • 1,847
  • 11
  • 21
0
votes
1 answer

Suddenly got quri.parser::parse-scheme-string is undefined

I was a happy user of Dexador. Suddenly, a simple dex:get throws me a quri.parser::parse-scheme-string is undefined error. Trying (dex:get url): 0: ("undefined function") 1: (quri.parser::parse-uri-string # :start…
Ehvince
  • 17,274
  • 7
  • 58
  • 79
0
votes
2 answers

Common Lisp with quicklisp and cl-csv: How to return a single row from a large csv

I'm working on implementing a neural network to tackle the MNIST dataset in CSV instead of using the images. I'm using Common Lisp with Quicklisp, and the cl-csv utility for CSV parsing. Using cl-csv, how can I return a single row from the CSV?…
pxlkllr
  • 11
  • 1
0
votes
1 answer

How to install MJRCALC-system in SBCL by Quicklisp

I've installed SBCL with Quicklisp in my Tumbleweed. Quicklisp has also ASDF inbuilt. After that I also intalled MJRCALC-system in Home/quicklisp/local-projects/mjrcalc-folder. Quicklisp (and ASDF) can recognize the system (in SBCL): (ql:quickload…
0
votes
1 answer

project directory for common lisp projects in Windows 10

I am trying to follow a tutorial on creating a main folder that slime will automatically check for when I run (quickload:"project"). It says to create a config at ~/.config/common-lisp/source-registry.conf.d/projects.conf and I am unsure if that…
hao ramirez
  • 235
  • 1
  • 6
0
votes
2 answers

Retrieving Common Lisp Project Dependencies from GitHub

I have a Common Lisp project that has a dependency on a C/C++ library that's hosted on GitHub. I need to clone, configure, and make this dependency in order for my project to work and I'd prefer to do this from within Common Lisp rather than…
user1569339
  • 683
  • 8
  • 20
1 2 3
10
11