Hi, i used the curl | bash command to install nf-test. It download and i get a DONE message. but nf-test is no recognized as command. Suggestions?
You should check if the directory where the nf-test executable is part of the PATH environment variable. You can see it’s value by typing the following on the command line:
echo "$PATH"
If the directory is not there, then you should add it by modifying your .bashrc file in your home directory.
export PATH="$PATH:/path/to/nf-test/binary-dir"
This will make sure the folder is added whenever you start a terminal.
This is assuming you’re working on Linux and Bash. If you’re working on another system, then you’ll need different instructions.
This command downloads the nf-test binary to your current directory, @bontix-77. You should be able to run it by typing ./nf-test, but that’s not particularly practical, as you probably want to run nf-test from anywhere on your machine. For that, follow @mahesh.binzerpanchal’s step-by-step above.