thankful-father-61351
04/30/2023, 7:41 PMshutil
to print the available diskspace it look like this even though I am on a g5.16xlarge
import shutil
total, used, free = shutil.disk_usage("/")
# Outputs
# Total: 29 GiB
# Used: 24 GiB
# Free: 5 GiB
Any guesses what might cause this limit?
(I am running using resume
, but that should not matter right?)