diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-05-14 14:24:22 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-05-14 14:29:25 +0100 |
commit | c3f4c227103565b03917fb9321ec8b9676bcd650 (patch) | |
tree | cbd38efaed6838e4c60e6ba440c234af437ff631 | |
parent | 15c1314d82239ac471fcf9e4a5fc05a8886df12d (diff) |
Docs to install packages from system-specific list
Also uses a slightly simpler command to get the package list
-rw-r--r-- | installing/manual_install.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/installing/manual_install.md b/installing/manual_install.md index e72d8a130..8d69e7273 100644 --- a/installing/manual_install.md +++ b/installing/manual_install.md @@ -67,12 +67,16 @@ and `bundler` using `apt`; so if you're running Ubuntu, you won't be able to use the above repositories. Instead, comment out those two lines in `config/packages` before following the next step (and install bundler manually). -Now install the packages that are listed in config/packages using apt-get: +Now install the packages relevant to your system using apt-get: - sudo apt-get install `cut -d " " -f 1 config/packages | grep -v "^#"` + # 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 +that you have appropriate versions installed. Some also list "`|`" and offer a choice of packages. ## Install Ruby dependencies |