Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Firebase init 不适用于 ubuntu 14.04。这是我每次尝试执行此命令时都会遇到的错误。感谢你们对我的帮助。
/usr/bin/env: 节点:没有这样的文件或目录
我终于找到了如何处理它。首先这是一个节点问题,所以我应该删除它,然后创建一个 nodejs 到 node 的符号链接。
sudo apt-get remove --purge node sudo rm /usr/bin/node sudo ln -s /usr/bin/nodejs /usr/bin/node firebase init
它有效。