You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes one needs to understand precisely what eb does, determine the values of variables and check the status of the filesystem. While eb can print lots of debug information that may not be enough.
One can run eb with a debugger, for example,
python3 -m pdb -m easybuild.main -S TensorFlow
but it would be more convenient to have a command line option such as --pdb or --debugger=pdb which would then run eb with corresponding arguments.
When running eb with pdb one might want to switch off Rich output (adding --output-style=basic). However, it could also be that running in a tmux session resulted in pdb not accepting commands or not showing them when they were typed.
The text was updated successfully, but these errors were encountered:
Sometimes one needs to understand precisely what
eb
does, determine the values of variables and check the status of the filesystem. Whileeb
can print lots of debug information that may not be enough.One can run
eb
with a debugger, for example,but it would be more convenient to have a command line option such as
--pdb
or--debugger=pdb
which would then runeb
with corresponding arguments.When running
eb
withpdb
one might want to switch offRich
output (adding--output-style=basic
). However, it could also be that running in atmux
session resulted inpdb
not accepting commands or not showing them when they were typed.The text was updated successfully, but these errors were encountered: