Silence import warnings and errors for cudf when no GPU is available
Importing cuDF when no GPU is available causes some warnings and errors to appear but doesn't hamper how the package runs. Need to either hide the import behind a try-except or find out how to silence those messages.
Possible solution is changing the import statement to be:
try:
import cudf
except:
pass