2

我正在使用 aptana studio 3。
我正在创建一个名为UBDTCE.
我想运行 web 部署向导登录到我的 heroku 帐户,它询问是否安装 heroku gem。
然后我收到一条错误消息:

$ gem install heroku && heroku create UBDTCE
sh.exe": gem: command not found

或者

$ gem install heroku && heroku create UBDTCE; git push heroku master
sh.exe": gem: command not found
fatal: 'heroku' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

我是这个 git 的新手,你将如何解决这些错误消息?

4

1 回答 1

1

错误消息fatal: 'heroku' does not appear to be a git repository源于第一个错误gem: command not found

如“-bash搞砸了? ”中所述,您需要检查您的,并PATH确保正确安装了 和 (如在此评论中::它确实包括)。rubygemrvm install ruby-1.9.3; rvm use ruby-1.9.3rubygems

于 2013-04-17T08:02:19.837 回答