Heroku error: "Could not find an executable ["phantomjs"] on your path."
Heroku error: "Could not find an executable ["phantomjs"] on your path."
当我在 heroku 控制台 运行 ruby bin/test.rb
中出现错误
错误
"Could not find an executable ["phantomjs"] on your path."
我有两个文件:
bin/test.rb 和 Gemfile
宝石文件
source 'https://rubygems.org'
gem 'capybara'
gem 'poltergeist'
gem 'mail'
gem 'rmagick'
我运行
heroku config:add BUILDPACK_URL=https://github.com/stomita/heroku-buildpack-phantomjs.git
我运行
heroku config:set PATH="/usr/local/bin:/usr/bin:/bin:/app/vendor/phantomjs/bin"
我不确定 phantonJS 的路径或构建包放在哪里。
如何修复此错误?
我必须重新提交 Heroku 才能让它正常工作。捆绑安装和重启还不够。
当我在 heroku 控制台 运行 ruby bin/test.rb
中出现错误
错误
"Could not find an executable ["phantomjs"] on your path."
我有两个文件: bin/test.rb 和 Gemfile
宝石文件
source 'https://rubygems.org'
gem 'capybara'
gem 'poltergeist'
gem 'mail'
gem 'rmagick'
我运行
heroku config:add BUILDPACK_URL=https://github.com/stomita/heroku-buildpack-phantomjs.git
我运行
heroku config:set PATH="/usr/local/bin:/usr/bin:/bin:/app/vendor/phantomjs/bin"
我不确定 phantonJS 的路径或构建包放在哪里。
如何修复此错误?
我必须重新提交 Heroku 才能让它正常工作。捆绑安装和重启还不够。