0

在安装 rbenv 时尝试以下操作时出现权限被拒绝错误。我正在尝试设置我的 VPS 环境来部署我的 rails 应用程序。

deployer@max:~$ curl https://raw.github.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash
bash: /usr/bin/curl: permission denied

curl 已经安装好了。我该如何解决这个问题?

4

1 回答 1

0

为了解决这个问题,我不得不

1)回到根目录

su root
cd

2)重新安装卷曲

sudo apt-get purge curl libcurl3
sudo apt-get install curl

3)返回部署者

su deployer
cd

4)安装rbenv

curl https://raw.github.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash
于 2012-12-02T02:04:57.163 回答