Heroku installing error eclipse plug in - heroku

while installing heroku I got this error msg...
Cannot complete the install because one or more required items could not be found. Software being installed: Heroku Eclipse Plugin 1.0.0 (com.heroku.eclipse.feature.feature.group 1.0.0) Missing requirement: Heroku Eclipse Plugin 1.0.0 (com.heroku.eclipse.feature.feature.group 1.0.0) requires 'org.eclipse.m2e.feature.feature.group 1.0.100' but it could not be found
I have eclipse Standard
Windows 7

Please check the following.
Eclipse v 3.7 or higher is required.
Disable the antivirus during installation.

Related

React Native error when create new project

I create a new project react native but get error "Your Ruby version is 2.6.10, but your Gemfile specified 2.7.5".
I Check "ruby -v" and get ver sion of ruby is 3.0.2 but when create react native alway get error about ruby version 2.6.10.
Please help me
I has change version to 3.0.2 and set it to default. and run ruby -v get 3.0.2 is default but error still happen.
there is a mismatch in your ruby version install on you MacBook and version required by react-native. to solve this problem you have to install ruby version manager (rvm) and then install the version specified.
all the commands are there. for example to install the version 2.1
rvm install 2.1
or a simple solution the delete you ruby and Cocoapods.and install new one.

Cannot bundle update --bundler in Ubuntu 20.04

I have installed 3.0.0 of Ruby on Ubuntu in my project but I am trying to bundle install and it is giving me the following error.
ruby_dep-1.5.0 requires ruby version >= 2.2.5, ~> 2.2, which is incompatible
with the current version, ruby 3.0.0p0
This is a project which I have cloned from another machine previously and now trying to open it on this new machine.
The ruby_dep has not been updated in since 2016 and looks abandoned. As suggested by the comment (3) remove ruby_dep from your Gemfile and see how well bundler handles it, otherwise fork or raise an issue at the repo.
I encountered a similar error. I removed the ruby_dep-1.5.0 and ran bundle install again. Then I got this other error:
Blockquote
listen-3.1.5 requires ruby version >= 2.2.3
I simply deleted the Gemfile.lock and ran bundle install and everything went smoothly with a new Gemfile.lock.

Fluentd influxdb installation Error?

I want to install influxdb plugin but I get thid error.
ERROR: Error installing fluent-plugin-influxdb:
influxdb requires Ruby version >= 2.2.0.
I uninstalled my ruby and installed different versions from 2.0.0, 2.2.0, 2.3, 2.4
but the error still exist. would you please help me how to solve this.
Thank you.
First of all I installed latest version of ruby from hereruby ftp
Then I installed influxdb client
apt-get install influxdb-dev influxdb-client.
After all downlad the latest version of fluend-plugin-influxdb from git hub of plugin
then I installed the plug in
/opt/td-agent/embedded/bin/gem install fluent-plugin-influxdb
td-agent (Treasure Data's packaged version of Fluentd) includes its own version of ruby within the /opt/td-agent/embedded/ directory and has links to ensure that it does not collide with other installations of ruby on the same box.
You can update to the latest version of td-agent, or if you need a specific version of Ruby then you should
Install Ruby version
Follow gem install instructions here: https://docs.fluentd.org/v0.12/articles/install-by-gem

Why can I not install ruby 1.9.3-p488 via homebrew?

I already have ruby version 2.0 but for a project, I need version 1.9.3-p448. When I try to run the ruby build I get the following:
ruby-build: definition not found: 1.9.3-p448
You can list all available versions with `rbenv install --list'.
If the version you're looking for is not present, first try upgrading
ruby-build. If it's still missing, open a request on the ruby-build
issue tracker: https://github.com/sstephenson/ruby-build/issues
The highest 1.9.3 version that comes up when i run rbenv install --list is 1.9.3-p429 and I can't figure out how to do a manual install. All of the documentation I have read only has instructions from the start but nowhere addresses this issue.
I had a similar problem and I uninstalled ruby build then reinstalled it and it worked. Hope that works!
You need to upgrade rbenv. 1.9.3-p448 is available in the current version.

heroku how to install specific versions of gem dependencies

I have an application on Heroku that runs on Rails 2.3.5
it also uses oauth2 gem.
when I deploy the application, it automatically installs the oauth2 gem (as it should because i've stated it in the .gems file) but it installs the latest version of Rack (version 1.2.1) because oauth2 depends on Rack.
since Rails 2.3.5 is not compatible with Rack > 1.1.0, my application crashes after deployment.
My question is, how do i specify which version of Rack to install as a dependency of oauth2.
I tried adding rack --version 1.0.0 to the .gems file, it still installs version 1.2.1 and then 1.0.0 which, again, causes the application to crash.
Thanks.
If you're using a .gems manifest, then add the flag --ignore-dependencies to the oauth2 line. Then add in all of its dependencies by hand, specifying versions as you need to.

Resources