summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL8
1 files changed, 3 insertions, 5 deletions
diff --git a/INSTALL b/INSTALL
index 71aca61..0f41252 100644
--- a/INSTALL
+++ b/INSTALL
@@ -5,9 +5,7 @@
Make sure your system has 'virtualenv' and 'pip' installed.
For example, on Debian systems, run:
-# apt-get install virtualenv python-pip python-dev
-
-Currently, the bank runs on Python 2.7.
+# apt-get install virtualenv python3-pip python3.4-dev
Next, create an environment which will "host" the bank's dependencies:
@@ -31,7 +29,7 @@ The file 'requirements.txt' is contained in this folder.
Once the environment is set up, the bank can be launched. For that
purpose, you need to first
-$ cd TalerBank/
+$ cd django/
Before actually launching the bank, the bank's database and static files'
serving must be initialized. Give the following commands (respecting the
@@ -54,7 +52,7 @@ If everything has worked fine, launch the bank's web server with:
$ python manage.py runserver 127.0.0.1:8080
-The bank's homepage is now available at http://127.0.0.1:8080/auth/
+The bank's homepage is now available at http://127.0.0.1:8080
--------------------- 2 The GNU way ----------------------------