You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first time you run the hello function that calls uiop:getenv, if you get an error that says that
package UIOP does not exist
we discuss this issue 2 minutes later at 5'30.
The fix is to "require" the :uiop (or :asdf) package, that is shipped with every implementation, but not always ready to use:
CL-USER> (require :uiop)
Typically, you would add it to your ~/.sbclrc.
(At the minute 5'30, we use the --script flag, but this flag does NOT load our init files. It is safe to manually "require" :asdf or :uiop in your scripts).
The text was updated successfully, but these errors were encountered:
The first time you run the
hello
function that callsuiop:getenv
, if you get an error that says thatwe discuss this issue 2 minutes later at 5'30.
The fix is to "require" the :uiop (or :asdf) package, that is shipped with every implementation, but not always ready to use:
Typically, you would add it to your
~/.sbclrc
.(At the minute 5'30, we use the
--script
flag, but this flag does NOT load our init files. It is safe to manually "require" :asdf or :uiop in your scripts).The text was updated successfully, but these errors were encountered: