【发布时间】:2021-08-14 22:17:10
【问题描述】:
我看到很多人在我之前在 Ubuntu 上安装 Meteor 时遇到了问题,但我还没有看到我在这里遇到的特定错误,所以我正在发一个新帖子。 当我执行时:
curl https://install.meteor.com/ | sh
我明白了:
Warning: Failed to create the file /home/ubuntu/.meteor-tarball-tmp:
Warning: Permission denied
0.0%curl: (23) Failure writing output to destination
如果有人知道如何解决这个问题,请告诉我
【问题讨论】:
-
你试过
sudo curl https://install.meteor.com/ | sh -
您的主目录(假设您是用户
ubuntu)似乎不属于您。试试sudo chown -R ubuntu:ubuntu /home/ubuntu,然后再试一次。