[Resolved]Issue Installing Package on Omega2+
-
Hi all,
I'm currently working on a Google Assistant project on the Omega 2+, and I keep on coming across an error when trying:python -m pip install google-assistant-sdk[samples]
The error I receive is this:
IOError: [Errno 28] No space left on device
I have a 16GB SD card on the Omega 2+ that I am booting from, so I should have plenty of space. I tried running df -h and this was the output:
Filesystem Size Used Available Use% Mounted on /dev/root 5.5M 5.5M 0 100% /rom tmpfs 61.4M 36.1M 25.3M 59% /tmp /dev/mmcblk0p1 14.8G 964.9M 13.0G 7% /overlay overlayfs:/overlay 14.8G 964.9M 13.0G 7% / tmpfs 512.0K 0 512.0K 0% /dev /dev/mmcblk0p1 14.8G 964.9M 13.0G 7% /tmp/run/mountd/mmcblk0p1
How can I fix this?
-
@Kemal-Ficici this discussion, if you have not already read it, might help you. i like the comment about including traceback of error. anyway, turns out the guy reformatted his drive and that fixed the issue for him.
https://stackoverflow.com/questions/6998083/python-causing-ioerror-errno-28-no-space-left-on-device-results-32766-h
-
@Douglas-Kryder, I found an alternative solution to Errno 28. Here's the reference:
https://community.home-assistant.io/t/rpi-install-keeps-saying-no-space-left-on-device/7863/6sudo mount -o remount,size=100M /tmp
When I expanded /tmp, the error disappeared.