From 4f35c40a39e096c352aaac7c09f3a0083cc4a71d Mon Sep 17 00:00:00 2001 From: Yasufumi Ogawa Date: Sun, 19 Jul 2020 14:01:45 +0000 Subject: [PATCH] Quick fix for installation guide You failed to install tacker-horizon as following [1] because it doesn't support python3 completely. This update is to fix the installation. [1] https://docs.openstack.org/tacker-horizon/latest/install/index.html#manual-installation Change-Id: Id69c80822752b0f972d6e2ccf87e2921acd1d04b Signed-off-by: Yasufumi Ogawa --- doc/source/install/index.rst | 10 +--------- manage.py | 2 +- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/doc/source/install/index.rst b/doc/source/install/index.rst index 1322049..85ef4ba 100644 --- a/doc/source/install/index.rst +++ b/doc/source/install/index.rst @@ -26,7 +26,7 @@ stable/queens. If unspecified the default will be master branch. :: cd tacker-horizon - sudo python setup.py install + sudo python3 setup.py install 3. Enable tacker horizon in dashboard. @@ -47,14 +47,6 @@ stable/queens. If unspecified the default will be master branch. 5. Restart Apache server. - :: - - sudo service apache2 restart - - -If your server is using Systemd instead of Upstart (e.g Ubuntu 15.10 -and above), use the following command instead: - :: sudo systemctl restart apache2 diff --git a/manage.py b/manage.py index df691be..9937356 100755 --- a/manage.py +++ b/manage.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain