我正在构建一个小型应用程序,允许您上传文件、将它们存储在云中并使用 Google Cloud Vision API 分析它们。
我现在可以进行上传和存储,为此我使用了 firebase,但是当我尝试运行 gcloud 时遇到了一些问题。
在服务器文件夹的 main.js 文件中,我运行:
import gcloud from 'gcloud';
console.log('gcloud', gcloud);
但这会导致终端出错:
=> Started proxy.
=> Started MongoDB.
Unable to resolve some modules:
"memcpy" in /C/Users/Zino/Documents/Meteor Projects/find-it/node_modules/bytebuffer/dist/ByteBufferNB.js
(os.windows.x86_32)
If you notice problems related to these missing modules, consider running:
meteor npm install --save memcpy
我的网站没有加载,所以我运行:
meteor npm install --save memcpy
但是后来我收到一个错误,我在互联网上找不到任何信息: 节点错误日志
我已经尝试解决这个问题两天了,没有运气。有什么建议么?