When you guile
, it looks for modules in paths written in ~/.guile
, but in my case in still doesn't find all the modules.
Where else can it be looking?
Asked
Active
Viewed 228 times
1 Answers
1
The directories Guile searches for modules in are specified in the %load-path
variable. You can add to this by setting the GUILE_LOAD_PATH
environment variable (you can add multiple directories by using a colon between each).

C. K. Young
- 961
guile
and then type%load-path
and guile would print out a rather helpful list of places it uses to look for modules. – Chiffa Sep 06 '16 at 08:51