Replies: 1 comment
-
Hey, Ivan. There is a list of tools in the official documentation that must be installed where tasks are run. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description:
When I used nextflow on our LSF sys, I always get an error
Command 'ps' required by nextflow to collect task metrics cannot be found
. After checking the.command.run
file and my singularity, I found it is not aps
PATH problem but acommand
PATH problem.The following is my own testing process.
When I comment the line
command -v ps &>/dev/null || { >&2 echo "Command 'ps' required by nextflow to collect task metrics cannot be found"; exit 1; }
with#
and run withbash .command.run
, it worked without error.So, how could I fix this problem or no longer have this line of code every time the
.command.run
files generated?Beta Was this translation helpful? Give feedback.
All reactions