I have cloned this project from gitlab , I tried to run this in locally but i cant able to run, when I tried to install bundle, this error is coming that i mentioned in above picture. Please some one help me to run this project, i have installed railsinstaller to run the project... Is there any other tool need to run big project ??
-
You're missing some headers to compile the gem, and the necessary part of log is aboveVasili– Vasili2017-04-01 09:48:10 +00:00Commented Apr 1, 2017 at 9:48
-
sorry i cant able to get your point, can u please explain briefly ??? That error showing in this C:\RailsInstaller\Ruby2.2.0\lib\ruby\gems\2.2.0\extensions\x86-mingw32\2.2.0\kgio-2.11.0\gem_make.out field....user7346035– user73460352017-04-01 09:50:23 +00:00Commented Apr 1, 2017 at 9:50
Add a comment
|
1 Answer
As the error message clearly states you need to install a gem called kgio before doing bundle install.
So do this
gem install kgio -v 2.11.0
Then run bundle install
8 Comments
gates
gem install kgio -v '2.11.0` did this succeed? You can verify it by
gem list commanduser7346035
No its not successfully installed...when i installed this it throwing this error
user7346035
C:\Sites\zeeno>gem install kgio -v '2.11.0` ERROR: While executing gem ... (Gem::Requirement::BadRequirementError) Illformed requirement ["2.11.0`"]
gates
gem install kgio -v 2.11.0 try without quotes
gates
without quotes I am able to install the gem, let me know if that works
|
