Installing manually+Ubuntu Lucid
Ubuntu / Debian
Bare-bones packages:
- ruby
- ruby-dev
- rubygems
- git-core
- imagemagick
- libmagick9-dev
MySQL packages:
- mysql-server
- libmysql-ruby
- libmysqlclient-dev
Production packages (Apache):
- libapache2-mod-passenger
- libapache2-mod-xsendfile
You can install all of the above with:
> sudo apt-get update > sudo apt-get install ruby rubygems ruby-dev mysql-server libmysql-ruby libmysqlclient-dev imagemagick libmagick9-dev libapache2-mod-passenger libapache2-mod-xsendfile
You may need to update rubygems:
> sudo gem install rubygems-update
> sudo/var/lib/gems/1.8/bin/update_rubygems
... and to install the bundler gem:
> sudo gem install bundler
Hi
I'm an Ubuntu newbie, therefor please excuse my probably silly question.
I've installed everything on my computer following your instruction. But how can I now start Wagn?
Andreas
See the installation page for info about firing up Wagn.
You may need to install ruby-full to be able to install rubygems-update:
sudo aptitude install ruby-full
worked for me.