Tanzina Rahman Smita
Tanzina Rahman Smita

Reputation: 95

How to use libraries from Quicklisp in Common Lisp source code?

I am trying to program a tcp server using Common Lisp (sbcl) on Windows-11. My main goal is to create a stand alone executable tcp server. So, I am using the usocket library (loading it with (ql:quickload "usocket")) to create the server socket. It performing without any issues when I am writing the codes inside of the REPL, but when I am using it in source code, named Server.lisp and try to run using the sbcl --script Server.lisp it shows this error:

Unhandled SB-C::INPUT-ERROR-IN-LOAD in thread
#<SB-THREAD:THREAD "main thread" RUNNING {10010A8003}>:
READ error during LOAD:
Package QL does not exist.
Line: 1, Column: 12, File-Position: 12

Upvotes: 0

Views: 130

Answers (0)

Related Questions