1

i tried to use

 pip3 install torch==1.8.0+cu111 torchvision==0.9.0+cu111 torchaudio==0.8.0 -f https://download.pytorch.org/whl/torch_stable.html

but got

Installing collected packages: torch, torchvision, torchaudio
ERROR: Could not install packages due to an OSError: [Errno 28] No space left on device
sam
  • 1,413

1 Answers1

0

On my case, the problem was the /tmp/ filesystem on a "tmpfs", was only of 2GB. Just for the installation, I increased it to 10GB and the installation were successfully.

Before increased to 10G:

tmpfs                        tmpfs    2,0G   66M    2,0G   4% /tmp

had this error:

ERROR: Could not install packages due to an OSError: [Errno 28] Spazio esaurito sul device

After increased to 10G:

tmpfs                        tmpfs     10G   69M     10G   1% /tmp

No errors.