Debian installation
xabier 10 posts |
I’m trying to install Instiki (both current and development versions) on a machine that runs Linux Mint Debian Edition LMDE 201403. This distribution is based on Debian, so I guess I’m running into Debian-based errors too. This is part of the output of the bundling command I get:
I understand that there are issues with Debian’s Ruby packaging. Or at least there were the last time this webpage was updated, but that was long ago. Any updating on this? Is it a stupid error? Thanks a lot. |
distler Moderator 123 posts |
Hmm. Well, I’m thinking of ditching You might try changing that line in the Gemfile and seeing if that fixes your error. It would be one more motivation for making the switch. |
xabier 10 posts |
I’m afraid I need more dumb-proof directions… or maybe I need to convince myself that I shouldn’t be trying this installation without knowing some Ruby basics. |
distler Moderator 123 posts |
Sorry. You can try replacing
with
in the |
xabier 10 posts |
Worked as a charm for the development version. For the current release version (0.19.6) the bundling is successful but when I tried to run instiki this is what I got:
Of course I’m more than happy to run the development version. I’ve copied this chunk of code just in case you wanted to know the outcome. I love this software so much I’m starting to worry, when are you going to grow tired of maintaining it? Thank you! |
distler Moderator 123 posts |
My problem is lack of time, not lack of enthusiasm. |
xabier 10 posts |
Here we are again… I have just installed Instiki on a machine running Linux Mint Debian Edition 5. Bundling seems OK but when I try to run the program I get this: Traceback (most recent call last): 6: from ./instiki:6:in `<main>' 5: from ./instiki:6:in `load' 4: from /home/xabier/instiki-0.30.3/script/server:56:in `<top (required)>' 3: from /home/xabier/instiki-0.30.3/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `require' 2: from /home/xabier/instiki-0.30.3/vendor/rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in' 1: from /home/xabier/instiki-0.30.3/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `block in require' /home/xabier/instiki-0.30.3/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `require': cannot load such file -- rack/handler (LoadError) 7: from ./instiki:6:in `<main>' 6: from ./instiki:6:in `load' 5: from /home/xabier/instiki-0.30.3/script/server:55:in `<top (required)>' 4: from /home/xabier/instiki-0.30.3/script/server:58:in `rescue in <top (required)>' 3: from /home/xabier/instiki-0.30.3/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `require' 2: from /home/xabier/instiki-0.30.3/vendor/rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in' 1: from /home/xabier/instiki-0.30.3/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `block in require' /home/xabier/instiki-0.30.3/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `require': cannot load such file -- rack/handler (LoadError) Any help in making some sense of this output? Thanks! |
distler Moderator 123 posts |
I think there’s an issue with Rack 3.0. See if this change to your Gemfile helps
|
xabier 10 posts |
Indeed it worked. Thank you! |