diff options
author | Arun Isaac | 2021-11-11 11:14:39 +0530 |
---|---|---|
committer | BonfaceKilz | 2021-11-11 09:19:30 +0300 |
commit | f98eb4b237e68372c4ed2416fad7b964714fdc37 (patch) | |
tree | bc5ca67121ef690cb39cba0ffbc8a418d09ba0d7 | |
parent | 6ada26d90f2971610d4f8d6d3c55845ad3ada467 (diff) | |
download | genenetwork3-f98eb4b237e68372c4ed2416fad7b964714fdc37.tar.gz |
Disuse absolute paths to guix.
It is safe to assume that the user has correctly set up guix in their PATH.
* README.md: Disuse absolute paths to guix in command invocations.
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -24,7 +24,7 @@ guix environment --load=guix.scm Also, make sure you have the [guix-bioinformatics](https://git.genenetwork.org/guix-bioinformatics/guix-bioinformatics) channel set up. ```bash -~/.config/guix/current/bin/guix environment --expose=$HOME/genotype_files/ --load=guix.scm +guix environment --expose=$HOME/genotype_files/ --load=guix.scm python3 import redis ``` @@ -32,7 +32,7 @@ python3 #### Run a Guix container ``` -~/.config/guix/current/bin/guix environment -C --network --expose=$HOME/genotype_files/ --load=guix.scm +guix environment -C --network --expose=$HOME/genotype_files/ --load=guix.scm ``` @@ -41,7 +41,7 @@ python3 Create a new profile with ``` -~/.config/guix/current/bin/guix package -i genenetwork3 -p ~/opt/genenetwork3 +guix package -i genenetwork3 -p ~/opt/genenetwork3 ``` and load the profile settings with |