You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by di...@apache.org on 2022/02/18 17:35:15 UTC

[allura] 03/05: fixup! fixup! python3.7 - upgrade docs and docker config to support python3.7

This is an automated email from the ASF dual-hosted git repository.

dill0wn pushed a commit to branch python3.7
in repository https://gitbox.apache.org/repos/asf/allura.git

commit 13c02c287d2c959fda2462a4174953ed23e8830e
Author: Dillon Walls <di...@slashdotmedia.com>
AuthorDate: Fri Feb 18 12:33:16 2022 -0500

    fixup! fixup! python3.7 - upgrade docs and docker config to support python3.7
---
 Allura/docs/getting_started/install_each_step.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Allura/docs/getting_started/install_each_step.rst b/Allura/docs/getting_started/install_each_step.rst
index b132df3..9320179 100644
--- a/Allura/docs/getting_started/install_each_step.rst
+++ b/Allura/docs/getting_started/install_each_step.rst
@@ -55,7 +55,7 @@ Before we begin, you'll need to install some system packages.  Allura currently
     ~$ sudo apt-get install software-properties-common
     ~$ sudo add-apt-repository ppa:deadsnakes/ppa
     ~$ sudo apt-get update
-    ~$ sudo apt-get install git-core python3.7 python3-dev gcc libmagic1 libssl-dev libldap2-dev libsasl2-dev libjpeg8-dev zlib1g-dev libffi-dev
+    ~$ sudo apt-get install git-core python3.7 python3.7-dev gcc libmagic1 libssl-dev libldap2-dev libsasl2-dev libjpeg8-dev zlib1g-dev libffi-dev
 
 To install MongoDB, follow the instructions `here <https://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/>`_.
 
@@ -71,7 +71,7 @@ The first step to installing the Allura platform is installing a virtual environ
 
 .. code-block:: bash
 
-    ~$ sudo apt-get install python3-venv
+    ~$ sudo apt-get install python3.7-venv
 
 Then create a virtual environment.  We'll call our Allura environment 'env-allura'.