* guix running advice: correct? @ 2023-01-03 5:31 Andy Tai 2023-01-04 17:08 ` Julien Lepiller 0 siblings, 1 reply; 5+ messages in thread From: Andy Tai @ 2023-01-03 5:31 UTC (permalink / raw) To: help-guix Hi, from this page https://framagit.org/tyreunom/guix-android/-/blob/master/README.md Important checks Make sure your guix environment is set up properly. You need to have ~/.config/guix/current as the first item in your $PATH or you're going to run into troubles. Additionally, after running guix pull, make sure you run hash guix in any open terminal to make sure bash's cache is cleared of the old guix binary location. I wonder if the above is correct, as I do not recall seeing anything in Guix doc mentioning such advice or something to that effect (unless I missed it) ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: guix running advice: correct? 2023-01-03 5:31 guix running advice: correct? Andy Tai @ 2023-01-04 17:08 ` Julien Lepiller 2023-01-04 18:41 ` Andy Tai 2023-02-04 23:16 ` Kyle Andrews 0 siblings, 2 replies; 5+ messages in thread From: Julien Lepiller @ 2023-01-04 17:08 UTC (permalink / raw) To: help-guix, Andy Tai Hi Andy, I'm the author of this advice. I think it's still correct. It's mostly sanity checks that you would run to ensure you can get packages from this channel. Most of it is scattered around the manual, mostly in the manual installation documentation. ~/.config/guix/current is where your new guix (the one you pulled with the channel) is installed. If it's not first in $PATH, you're at risk that some other guix will be used instead. hash is a command that removes an entry from the shell's cache. If this is your first pull, the guix you used comes from another location that is recorded by the shell, so you have to clear the cache to use the newly pulled guix. If your guix already comes from the correct location, it'll be useless but it won't hurt. HTH! Le 3 janvier 2023 06:31:25 GMT+01:00, Andy Tai <atai@atai.org> a écrit : >Hi, from this page >https://framagit.org/tyreunom/guix-android/-/blob/master/README.md > >Important checks >Make sure your guix environment is set up properly. You need to have >~/.config/guix/current as the first item in your $PATH or you're going >to run into troubles. Additionally, after running guix pull, make sure you >run hash guix in any open terminal to make sure bash's cache is cleared of >the old guix binary location. > >I wonder if the above is correct, as I do not recall seeing anything in >Guix doc mentioning such advice or something to that effect (unless I >missed it) ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: guix running advice: correct? 2023-01-04 17:08 ` Julien Lepiller @ 2023-01-04 18:41 ` Andy Tai 2023-02-04 23:16 ` Kyle Andrews 1 sibling, 0 replies; 5+ messages in thread From: Andy Tai @ 2023-01-04 18:41 UTC (permalink / raw) To: Julien Lepiller; +Cc: help-guix Thanks! Maybe it is a good idea to emphasize that in the manual somewhere especially for new users of GNU Guix. On Wed, Jan 4, 2023 at 9:08 AM Julien Lepiller <julien@lepiller.eu> wrote: > Hi Andy, > > I'm the author of this advice. I think it's still correct. It's mostly > sanity checks that you would run to ensure you can get packages from this > channel. Most of it is scattered around the manual, mostly in the manual > installation documentation. > > ~/.config/guix/current is where your new guix (the one you pulled with the > channel) is installed. If it's not first in $PATH, you're at risk that some > other guix will be used instead. > > hash is a command that removes an entry from the shell's cache. If this is > your first pull, the guix you used comes from another location that is > recorded by the shell, so you have to clear the cache to use the newly > pulled guix. If your guix already comes from the correct location, it'll be > useless but it won't hurt. > > HTH! > > Le 3 janvier 2023 06:31:25 GMT+01:00, Andy Tai <atai@atai.org> a écrit : >> >> Hi, from this page >> https://framagit.org/tyreunom/guix-android/-/blob/master/README.md >> >> Important checks >> Make sure your guix environment is set up properly. You need to have >> ~/.config/guix/current as the first item in your $PATH or you're going >> to run into troubles. Additionally, after running guix pull, make sure you >> run hash guix in any open terminal to make sure bash's cache is cleared of >> the old guix binary location. >> >> I wonder if the above is correct, as I do not recall seeing anything in >> Guix doc mentioning such advice or something to that effect (unless I >> missed it) >> >> -- Andy Tai, atai@atai.org, Skype: licheng.tai, Line: andy_tai, WeChat: andytai1010 Year 2023 民國112年 自動的精神力是信仰與覺悟 自動的行為力是勞動與技能 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: guix running advice: correct? 2023-01-04 17:08 ` Julien Lepiller 2023-01-04 18:41 ` Andy Tai @ 2023-02-04 23:16 ` Kyle Andrews 2023-02-05 6:41 ` Julien Lepiller 1 sibling, 1 reply; 5+ messages in thread From: Kyle Andrews @ 2023-02-04 23:16 UTC (permalink / raw) To: Julien Lepiller; +Cc: Andy Tai, help-guix Julien Lepiller <julien@lepiller.eu> writes: > Hi Andy, > > I'm the author of this advice. I think it's still correct. It's mostly > sanity checks that you would run to ensure you can get packages from > this channel. Most of it is scattered around the manual, mostly in the > manual installation documentation. > > ~/.config/guix/current is where your new guix (the one you pulled with > the channel) is installed. If it's not first in $PATH, you're at risk > that some other guix will be used instead. > > hash is a command that removes an entry from the shell's cache. If > this is your first pull, the guix you used comes from another location > that is recorded by the shell, so you have to clear the cache to use > the newly pulled guix. If your guix already comes from the correct > location, it'll be useless but it won't hurt. > > HTH! > > Le 3 janvier 2023 06:31:25 GMT+01:00, Andy Tai <atai@atai.org> a écrit : >>Hi, from this page >>https://framagit.org/tyreunom/guix-android/-/blob/master/README.md >> >>Important checks >>Make sure your guix environment is set up properly. You need to have >>~/.config/guix/current as the first item in your $PATH or you're going >>to run into troubles. Additionally, after running guix pull, make sure you >>run hash guix in any open terminal to make sure bash's cache is cleared of >>the old guix binary location. >> >>I wonder if the above is correct, as I do not recall seeing anything in >>Guix doc mentioning such advice or something to that effect (unless I >>missed it) Interesting. I too had never heard about this PATH recommendation and it seems contrary to some advice I do remember given in the cookbook about working with multiple profiles. For me, activating an extra profile places it's /bin and /sbin directories at the beginning of my PATH. I can only find ~/.config/guix/current/bin burried quite deep near the end. Do you have any advice on how regular end users could follow your recommendation? My naive hope would be that end users wouldn't have to think about it. Ideally if its that dangerous then updating the path would happen automatically when sourcing the etc/profile file inside a profile directory. Should the Guix Profiles in Practice section of the cookbook be updated to reflect this? ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: guix running advice: correct? 2023-02-04 23:16 ` Kyle Andrews @ 2023-02-05 6:41 ` Julien Lepiller 0 siblings, 0 replies; 5+ messages in thread From: Julien Lepiller @ 2023-02-05 6:41 UTC (permalink / raw) To: Kyle Andrews; +Cc: Andy Tai, help-guix Ah, the guix pull profile comming first is not absolute. It's simply that some users might have installed guix in their default profile, and if that profile comes before guix pull, that huix will be used. Any guix upgrade will then doongrade your profile. This shouldn't be ppssible anymore, since guix should do the right thing now when setting the shell profile files, and it would warn if you attempted a dpongrade. Le 5 février 2023 00:16:37 GMT+01:00, Kyle Andrews <kyle@posteo.net> a écrit : > >Julien Lepiller <julien@lepiller.eu> writes: > >> Hi Andy, >> >> I'm the author of this advice. I think it's still correct. It's mostly >> sanity checks that you would run to ensure you can get packages from >> this channel. Most of it is scattered around the manual, mostly in the >> manual installation documentation. >> >> ~/.config/guix/current is where your new guix (the one you pulled with >> the channel) is installed. If it's not first in $PATH, you're at risk >> that some other guix will be used instead. >> >> hash is a command that removes an entry from the shell's cache. If >> this is your first pull, the guix you used comes from another location >> that is recorded by the shell, so you have to clear the cache to use >> the newly pulled guix. If your guix already comes from the correct >> location, it'll be useless but it won't hurt. >> >> HTH! >> >> Le 3 janvier 2023 06:31:25 GMT+01:00, Andy Tai <atai@atai.org> a écrit : >>>Hi, from this page >>>https://framagit.org/tyreunom/guix-android/-/blob/master/README.md >>> >>>Important checks >>>Make sure your guix environment is set up properly. You need to have >>>~/.config/guix/current as the first item in your $PATH or you're going >>>to run into troubles. Additionally, after running guix pull, make sure you >>>run hash guix in any open terminal to make sure bash's cache is cleared of >>>the old guix binary location. >>> >>>I wonder if the above is correct, as I do not recall seeing anything in >>>Guix doc mentioning such advice or something to that effect (unless I >>>missed it) > >Interesting. I too had never heard about this PATH recommendation and it >seems contrary to some advice I do remember given in the cookbook about >working with multiple profiles. For me, activating an extra profile >places it's /bin and /sbin directories at the beginning of my PATH. I can >only find ~/.config/guix/current/bin burried quite deep near the end. > >Do you have any advice on how regular end users could follow your >recommendation? > >My naive hope would be that end users wouldn't have to think about >it. Ideally if its that dangerous then updating the path would happen >automatically when sourcing the etc/profile file inside a profile >directory. > >Should the Guix Profiles in Practice section of the cookbook be updated >to reflect this? > > > > ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-02-05 7:06 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-03 5:31 guix running advice: correct? Andy Tai 2023-01-04 17:08 ` Julien Lepiller 2023-01-04 18:41 ` Andy Tai 2023-02-04 23:16 ` Kyle Andrews 2023-02-05 6:41 ` Julien Lepiller
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.