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 177 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
- 7
- 10
-
Oh. Thanks, I'll try this and report with results. – Chiffa Sep 05 '16 at 19:35
-
Ok, it turned out that you can just run `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