简体   繁体   English

设备 ubuntu AWS 上没有剩余空间

[英]No space left on device ubuntu AWS

After setting up Anaconda on Ubuntu through AWS, I configured Jupiter notebook and installed all PySpark and then tried to import it to the script however it returned通过 AWS 在 Ubuntu 上设置 Anaconda 后,我配置了 Jupiter 笔记本并安装了所有 PySpark 然后尝试将其导入脚本但它返回

TypeError: namedtuple() missing 3 required keyword-only arguments: 'verbose', 'rename', and 'module'

The reason is Spark 2.1.0 doesn't support python 3.6.0.原因是 Spark 2.1.0 不支持 python 3.6.0。 the solution is changing the python version in anaconda environment.解决方案是在 anaconda 环境中更改 python 版本。 I then applied this command:然后我应用了这个命令:

  • [x] conda create -n py35 python=3.5 anaconda [x] conda create -n py35 python=3.5 anaconda
  • [x] activate py35 [x] 激活 py35

However, applying this command will download files and then an error will occur saying:但是,应用此命令将下载文件,然后会出现错误提示:

[Errno 28] No space left on device

When checking df -i it shows that the 3 pop nodes are 100% which means they are full I can not delete files and If I could what are the files that should be deleted to make space检查df -i时,它显示 3 个弹出节点为 100%,这意味着它们已满我无法删除文件,如果可以,应该删除哪些文件以腾出空间

Keeping in mind this is all done on AWS using the standard free trial package请记住,这一切都是在 AWS 上使用标准免费试用版 package 完成的

If you think that python 3.5 is needed what you should to do is remove python 3.6 and install python 3.5 instead of working around with configuration changing.如果您认为需要 python 3.5,您应该删除 python 3.6 并安装 python 3.5 而不是解决配置更改问题。 Also, please double check what is the need of your application, in case disk amount is used up, you should consider adding new space.另外,请仔细检查您的应用程序需要什么,如果磁盘容量用完,您应该考虑增加新空间。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用docker python“设备上没有剩余空间”后无法正确重启ubuntu,外围设备无可用内存 - cannot restart correctly ubuntu after use docker python “no space left on device” , no memory available on peripheric IOError:设备上没有剩余空间-哪个设备? - IOError: No space left on device - which device? 创建信号量时“设备上没有剩余空间”? - 'No Space Left on Device' when creating Semaphore? EC2实例-设备上没有剩余空间 - EC2 instance - No space left on device 推向 Diego:无法写入:设备上没有剩余空间 - Pushing to Diego: Cannot write: No space left on device OSError: [Errno 28] 设备 Docker 上没有剩余空间,但我有空间 - OSError: [Errno 28] No space left on device Docker, but I have space IOError: [Errno 28] 安装 pytorch 时设备上没有剩余空间 - IOError: [Errno 28] No space left on device while installing pytorch IOError:[Errno 28] 安装 TensorFlow 时设备上没有剩余空间 - IOError: [Errno 28] No space left on device while installing TensorFlow `pip install .`抛出`[Errno 28]设备上没有剩余空间` - `pip install .` throws `[Errno 28] No space left on device` 在设备上没有剩余空间后无法删除文件 - can't delete a file after no space left on device
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM