From mboxrd@z Thu Jan 1 00:00:00 1970 From: zimoun Subject: Re: what does this mean?? Date: Thu, 16 Jan 2020 17:25:07 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:40780) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1is7xQ-0003tR-B4 for help-guix@gnu.org; Thu, 16 Jan 2020 11:25:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1is7xP-0004Ox-4Z for help-guix@gnu.org; Thu, 16 Jan 2020 11:25:20 -0500 Received: from mail-qk1-x732.google.com ([2607:f8b0:4864:20::732]:35752) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1is7xO-0004Oh-VR for help-guix@gnu.org; Thu, 16 Jan 2020 11:25:19 -0500 Received: by mail-qk1-x732.google.com with SMTP id z76so19652901qka.2 for ; Thu, 16 Jan 2020 08:25:18 -0800 (PST) In-Reply-To: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane-mx.org@gnu.org Sender: "Help-Guix" To: wisdomlight@protonmail.com Cc: "help-guix@gnu.org" Hi Sherab, On Wed, 15 Jan 2020 at 22:55, wisdomlight--- via wrote: > what PATH do i need to set? > How? > How do I make sure the shell refers to =C2=B4/home/sherab/.config/guix/cu= rrent/bin/guix =C2=B4 ?? You need to do the hint. :-) Then for example, at the bottom of my ~/.basrc file, I have these lines: --8<---------------cut here---------------start------------->8--- if [ -n "$GUIX_ENVIRONMENT" ] then export PS1=3D"\n[env]\n\w/\n\u@\h$ " else source ~/.bash_profile fi --8<---------------cut here---------------end--------------->8--- And my ~/.bash_profile contains at least: --8<---------------cut here---------------start------------->8--- export PATH=3D"$HOME/.guix-profile/bin:$HOME/.guix-profile/sbin${PATH:+:}$P= ATH" # the latest version lives there # needs to be first in the PATH export PATH=3D"$HOME/.config/guix/current/bin${PATH:+:}$PATH" export INFOPATH=3D"$HOME/.guix-profile/share/info${INFOPATH:+:}$INFOPATH" export INFOPATH=3D"$HOME/.config/guix/current/share/info${INFOPATH:+:}$INFO= PATH" export GUIX_LOCPATH=3D$HOME/.guix-profile/lib/locale #export LOCPATH=3D$HOME/.guix-profile/lib/locale # from: https://github.com/pjotrp/guix-notes/blob/master/INSTALL.org#set-lo= cale #export LC_ALL=3Den_GB.UTF-8 # locale fix? export LANG=3Den_GB.UTF-8 # locale fix --8<---------------cut here---------------end--------------->8--- Hope that helps. simon