diff options
Diffstat (limited to 'installing')
-rw-r--r-- | installing/manual_install.md | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/installing/manual_install.md b/installing/manual_install.md index 096f8d348..567150286 100644 --- a/installing/manual_install.md +++ b/installing/manual_install.md @@ -69,18 +69,6 @@ Add the following repositories to `/etc/apt/sources.list`: The repositories above let you install the packages `wkhtmltopdf-static` and `bundler` using `apt`. -Now install the packages relevant to your system using apt-get: - - # Debian Squeeze - sudo apt-get install $(cat config/packages.debian-squeeze) - - # Ubuntu Precise - sudo apt-get install $(cat config/packages.ubuntu-precise) - -Some of the files also have a version number listed in config/packages - check -that you have appropriate versions installed. Some also list "`|`" and offer a -choice of packages. - ### Packages customised by mySociety If you're using Debian, you should add the mySociety Debian archive to your @@ -119,6 +107,24 @@ you kill it), patch it yourself, or use the Debian package compiled by mySociety (see link in [issue 305](https://github.com/mysociety/alaveteli/issues/305)) +### Install the dependencies + +Refresh the sources after adding the extra repositories: + + sudo apt-get update + +Now install the packages relevant to your system: + + # Debian Squeeze + sudo apt-get install $(cat config/packages.debian-squeeze) + + # Ubuntu Precise + sudo apt-get install $(cat config/packages.ubuntu-precise) + +Some of the files also have a version number listed in config/packages - check +that you have appropriate versions installed. Some also list "`|`" and offer a +choice of packages. + ## Install Ruby dependencies To install Alaveteli's Ruby dependencies, you need to install bundler. In |