summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvangelos Foutras <evangelos@foutrelis.com>2011-08-13 17:25:51 +0300
committerDan McGee <dan@archlinux.org>2011-08-16 15:04:26 -0500
commitf5b5c59b3c2e2aed161bc71a0e26cdeb59055a11 (patch)
treedaf8ed3da08d655a1a6062e3bf015c2ad9d91933
parent0df3567ae25bb2856bc62951844d9dab5ea97990 (diff)
downloadarchweb-f5b5c59b3c2e2aed161bc71a0e26cdeb59055a11.tar.gz
archweb-f5b5c59b3c2e2aed161bc71a0e26cdeb59055a11.zip
Update README to use virtualenv2 (FS#25520)
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--README17
1 files changed, 9 insertions, 8 deletions
diff --git a/README b/README
index 184d1c8a..0d3ee082 100644
--- a/README
+++ b/README
@@ -14,8 +14,8 @@ See AUTHORS file.
# Dependencies
-- python
-- python-virtualenv
+- python2
+- python2-virtualenv
# Python dependencies
@@ -31,13 +31,13 @@ packages, you will probably want the following:
# Testing Installation
-1. Run `virtualenv`.
+1. Run `virtualenv2`.
- $ cd /path/to/archweb && virtualenv ../archweb-env
+ $ cd /path/to/archweb && virtualenv2 ../archweb-env
-2. Source the virtualenv.
+2. Activate the virtualenv.
- $ . ../archweb-env/bin/activate
+ $ source ../archweb-env/bin/activate
2. Install dependencies through `pip`.
@@ -58,7 +58,7 @@ packages, you will probably want the following:
provided data, adjust the file glob accordingly.
(archweb-env) $ ./manage.py loaddata */fixtures/*.json
-
+
7. Use the following commands to start a service instance
(archweb-env) $ ./manage.py runserver
@@ -69,7 +69,8 @@ packages, you will probably want the following:
(archweb-env) $ ./manage.py reporead i686 core.db.tar.gz
(archweb-env) $ ./manage.py syncisos
-Alter architecture and repo to get x86\_64 and packages from other repos if needed.
+Alter architecture and repo to get x86\_64 and packages from other repos if
+needed.
# Production Installation