From 4483581b059d50a0fdc068ab244b57f32b67c813 Mon Sep 17 00:00:00 2001 From: Reinhard Hiebl Date: Mon, 24 Dec 2012 02:42:46 +0100 Subject: [PATCH] gem mysql2 require 'libmysqlclient-dev' Mysql2 install failed. On Ubuntu i need to install 'libmysqlclient-dev' before. --- doc/install/installation.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/install/installation.md b/doc/install/installation.md index 718e4cf6419..2f9e959f7b4 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -246,6 +246,7 @@ Make sure to update username/password in config/database.yml. sudo gem install charlock_holmes --version '0.6.9' # For mysql db + apt-get install libmysqlclient-dev sudo -u gitlab -H bundle install --deployment --without development test postgres # Or For postgres db -- GitLab