From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#33279: guile-readline: error: no code for module Date: Tue, 06 Nov 2018 12:36:36 +0100 Message-ID: <8736se5tff.fsf@gnu.org> References: <6fe72b3b-edb7-efb7-8b4e-f30e7b746fbb@riseup.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59640) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gJzfL-0003Wu-FJ for bug-guix@gnu.org; Tue, 06 Nov 2018 06:37:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gJzfK-0000lX-N2 for bug-guix@gnu.org; Tue, 06 Nov 2018 06:37:03 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:60072) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gJzfK-0000lN-Jd for bug-guix@gnu.org; Tue, 06 Nov 2018 06:37:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gJzfK-0001NC-Fc for bug-guix@gnu.org; Tue, 06 Nov 2018 06:37:02 -0500 Sender: "Debbugs-submit" Resent-To: bug-guix@gnu.org Resent-Message-ID: In-Reply-To: <6fe72b3b-edb7-efb7-8b4e-f30e7b746fbb@riseup.net> (swedebugia's message of "Mon, 5 Nov 2018 21:14:26 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: swedebugia Cc: 33279-done@debbugs.gnu.org Hello, swedebugia skribis: > exporting these variables did not help: > > $ export GUILE_LOAD_PATH=3D~/.guix-profile/lib/guile/2.2/:$GUILE_LOAD_PATH > $ export > GUILE_LOAD_COMPILED_PATH=3D~/.guix-profile/lib/guile/2.2/:$GUILE_LOAD_COM= PILED_PATH Rather you need: export GUILE_LOAD_PATH=3D~/.guix-profile/share/guile/site/2.2:$GUILE_LOAD= _PATH export GUILE_LOAD_COMPILED_PATH=3D~/.guix-profile/lib/guile/2.2/site-ccac= he:$GUILE_LOAD_COMPILED_PATH Better yet, you can install both =E2=80=98guile=E2=80=99 and =E2=80=98guile= -readline=E2=80=99 in the same profile and you=E2=80=99ll get a message telling you what to do: --8<---------------cut here---------------start------------->8--- $ guix package -p foo -i guile guile-readline [...] La jenaj medi-variablaj difinoj povos esti necesaj: export PATH=3D"foo/bin${PATH:+:}$PATH" export GUILE_LOAD_PATH=3D"foo/share/guile/site/2.2${GUILE_LOAD_PATH:+:}$= GUILE_LOAD_PATH" export GUILE_LOAD_COMPILED_PATH=3D"foo/lib/guile/2.2/site-ccache:foo/sha= re/guile/site/2.2${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH" --8<---------------cut here---------------end--------------->8--- HTH! Ludo=E2=80=99.