Sto riscontrando un problema durante l'implementazione del mio sito su AWS
.La preimpostazione di `bundle exec` al tuo comando può risolvere questo problema
Gem::LoadError: You have already activated rake 10.4.2, but your Gemfile requires rake 10.5.0. Prepending `bundle exec` to your command may solve this.
/var/app/ondeck/config/boot.rb:3:in `<top (required)>'
/var/app/ondeck/config/application.rb:1:in `<top (required)>'
/var/app/ondeck/Rakefile:4:in `<top (required)>'
LoadError: cannot load such file -- bundler/setup
/var/app/ondeck/config/boot.rb:3:in `<top (required)>'
/var/app/ondeck/config/application.rb:1:in `<top (required)>'
/var/app/ondeck/Rakefile:4:in `<top (required)>'
(See full trace by running task with --trace)
(ElasticBeanstalk::ExternalInvocationError)
mentre quando lo faccio gem list rake
mi dà
*** LOCAL GEMS ***
airbrake (4.3.1)
rake (10.5.0, 10.4.2)
voglio avere una sola versione quando lo faccio bundle exec gem uninstall rake -v 10.4.2
mi dà
ERROR: While executing gem ... (Gem::InstallError)
gem "rake" cannot be uninstalled because it is a default gem
Come risolvere questo problema? Qualsiasi aiuto sarà apprezzato.
anteporre 'bundle exec' a qualsiasi comando eseguito per fornire l'errore, esattamente come l'errore indica di fare. – sevenseacat