当我在项目上运行 expo start 时出现错误。有人知道如何修复吗?

当我在项目上运行 expo start 时出现错误。有人知道如何修复吗?

这是我收到的错误。

fs.js:1384
    throw error;
    ^
Error: watch /home/daniel/Documents/Glocal/app/Aqua-Client-Project/node_modules/expo-face-detector/android/src ENOSPC
    at _errnoException (util.js:1022:11)
    at FSWatcher.start (fs.js:1382:19)
    at Object.fs.watch (fs.js:1408:11)
    at NodeWatcher.watchdir (/home/daniel/Documents/Glocal/app/Aqua-Client-Project/node_modules/sane/src/node_watcher.js:175:20)
    at Walker.<anonymous> (/home/daniel/Documents/Glocal/app/Aqua-Client-Project/node_modules/sane/src/common.js:116:12)
    at emitTwo (events.js:126:13)
    at Walker.emit (events.js:214:7)
    at /home/daniel/Documents/Glocal/app/Aqua-Client-Project/node_modules/walker/lib/walker.js:69:16
    at go$readdir$cb (/home/daniel/Documents/Glocal/app/Aqua-Client-Project/node_modules/graceful-fs/graceful-fs.js:162:14)
    at FSReqWrap.oncomplete (fs.js:135:15)

作为背景,我正在尝试运行从学生小组的 github 中提取的 android 应用程序。我正在使用 Ubuntu 18.04。

答案1

ENOSPC是“错误:无空间”的缩写,您可以看到它在访问时发生/home/daniel/Documents/Glocal/app/Aqua-Client-Project/node_modules/expo-face-detector/android/src

您应该释放驱动器上的一些空间/home/daniel

相关内容