我在没有管理员权限的 win 7 - 32 位系统上与 Heroku 合作。
我已经按照http://community.webfaction.com/questions/11803/heroku-toolbelt下载并安装了heroku toolbelt
cd ~
curl http://assets.heroku.com/heroku-client/heroku-client.tgz | tar zx
export PATH=$HOME/heroku-client/bin/:$PATH
按照 Leo 的建议,我已将 ruby 添加到 windows 路径以解决此问题
现在当我运行时:
$ heroku run bash --app MYAPP
我得到:
f:/heroku-client/lib/heroku/updater.rb:164:in `spawn': Exec format error - "m:/heroku-client/bin/heroku" update (Errno::ENOEXEC)
from f:/heroku-client/lib/heroku/updater.rb:164:in `background_update!'
from f:/heroku-client/lib/heroku/updater.rb:144:in `inject_libpath'
from f:/heroku-client/bin/heroku:19:in `<main>'
我已添加到 windows env 变量路径:
F:/heroku-client/bin/;f:/heroku-client/lib/heroku/
我怎样才能解决这个问题?