2013-04-17 44 views
2

我使用集錦工作室3
我創建一個名爲UBDTCE一個應用程序
我希望運行Web部署嚮導的登錄到我的賬戶的Heroku它要求。 是否
安裝Heroku的寶石或不那麼我得到一個錯誤信息:的Aptana工作室sh.exe「:寶石:找不到命令

$ 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. 

我是新來這個混帳東西,你將如何解決這些錯誤信息?

回答

1

錯誤消息fatal: 'heroku' does not appear to be a git repository從第一個錯誤gem: command not found

正如在「-bash is messed up?」中描述的莖,你需要檢查你的PATH,從而也確保rubygem已正確安裝(如this commentrvm install ruby-1.9.3; rvm use ruby-1.9.3:它確實包括rubygems)。

相關問題