Addressable/uri load error jekyll build - jekyll

I'm having trouble fiinding the source of this problem. I am currently working on a project that uses jekkyl and gulp, and when I try to do jekyll build I get an error saying "cannot load such file -- addressable/uri (LoadError)". I did a 'gem install addressable' and it installed correctly but I still get the error.

Related

How to solve Jekyll-Include-Cache issue?

I am currently trying to open an already created website made through Jekyll. I use the cd command through the terminal to get to the website file that I pulled from Github. Once I get to the file, I run bundle exec Jekyll serve and it shows this error message:
Dependency Error: Yikes! It looks like you don't have Jekyll-include-cache or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem. The full error message from Ruby is: 'cannot load such file -- Jekyll-include-cache' If you run into trouble, you can find helpful resources at https://jekyllrb.com/help/!
Jekyll 3.8.5 | Error: Jekyll-include-cache
So I then do gem install Jekyll-include-cache and the issue remains. Does anyone know how to fix this??
The error message means that Jekyll couldn't load the plugin properly.
Ensure that you have listed the plugin in your Gemfile:
# Gemfile
gem "jekyll-include-cache"

jekyll_lunr_js_search.rb or one of its dependencies installed once switched code to windows from ubuntu

On Ubuntu v15 my Jekyll Blog with jekyll lunr-js-search builds well as well as it gets build in gitlab-ci.
Now, I moved my project to Windows system with same versions of node, bower etc. I get following error on windows as well as gitlab-ci (This error repeated on gitlab-ci when I've made only a single line change in post). HOW TO FIX ?
ERROR
Dependency Error: Yikes! It looks like you don't have /builds/sachingpta/home/_plugins/lunrjs/jekyll_lunr_js_search.rb or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem. The full error message from Ruby is: 'cannot load such file -- v8' If you run into trouble, you can find helpful resources at https://jekyllrb.com/help/!
It got built on gitlab, it could be due to gitlab update with dashboard message: We're currently deploying 8.17.0 RC2, so you may encounter intermittent errors. Somebody mentioned that required dependency therubyracer does not compiles on windows so this question is closed. I've to compile project on ubuntu only :(

Trying to run a HTML application but server could not find right bundle

I tried to run a HTML file that I coded on netbeans in eclipse. I downloaded the web tools platform in the eclipse marketplace. Then I configured the server but when I tried to run the file, I got a popup box with an error saying:
'Starting J2EE Preview at localhost' has encountered a problem. Could not find the required bundle org.eclipse.jetty.webapp. Does anyone know where I could get this bundle. I have eclipse luna.

Linking errors while building VTK

I am trying to build ITKapps. I am using ITK 4.7., ITKapps 4.7. FLTK 1.1.3.
Some applications build ok, there is .exe and I can run them.
While building applications which use VTK always linking errors appears: cannot find vtkRendering.lib or vtkRenderingOpenGL.lib...
Problem is that I cant build VTK either. While building VTK there are also linking errors:
Error 3808 error LNK1104: cannot open file '......\bin\Debug\vtkRendering.lib'
I tried VTK 4.x and 5.x.. and not one version builds successfull.
VTK 6.x builds ok but building ITKapps still have linking errors.(i don't think ITKapps works with VTK 6.x) so i must use version 4 or 5.
Maybe someone have idea what am I doing wrong or some sugestions?
I had the same error, error LNK1104: cannot open file '......\bin\Debug\vtkRendering.lib' while trying to build VTK in VS 2012. In Cmake I changed the VTK_RENDERING_BACKEND value from OpenGL to OpenGL2 and later the build succeeded in VS.

Ruby (Rack) application could not be started - mysql library error

Bluehost just upgraded their MySql version and broke my application.
I now get "Ruby (Rack) application could not be started" and this specific file load error:
libmysqlclient_r.so.16: cannot open shared object file: No such file or directory - /home4/mychairs/ruby/gems/gems/mysql2-0.3.11/lib/mysql2/mysql2.so
Notice the super long root-based path.
Running
bundle install
via SSH and then
bundle show mysql2
I am told that I am using this library:
/home4/mychairs/ruby/gems/gems/mysql2-0.3.11
I cannot tell where the abnormal path is being generated.
Remove the mysql gem manually and reinstall it via 'bundle install'. Bundler has no idea the underlying MySQL lib has changed, it just knows that the gem is there.