0

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?

Chiffa
  • 101

1 Answers1

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).

  • 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