From ce35ac152f3bd180020fa25f8f714bf41d558419 Mon Sep 17 00:00:00 2001 From: Jamie Lentin Date: Mon, 5 Feb 2024 14:32:26 +0000 Subject: [PATCH] Gruntfile: Use python3.10, not python3.11 #672 #699 --- Gruntfile.js | 2 +- README.markdown | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 6376e844..12b06956 100755 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -5,7 +5,7 @@ const path = require('path'); partial_install_site = "http://www.onezoom.org"; partial_local_install_site = "http://127.0.0.1:8000"; // if you are running a local installation -preferred_python3 = "python3.11"; // in case you have multiple python3 versions installed +preferred_python3 = "python3.10"; // in case you have multiple python3 versions installed web2py_py = path.join(path.dirname(path.dirname(process.cwd())), 'web2py.py'); venv_python = path.join(path.dirname(path.dirname(process.cwd())), 'bin/python'); diff --git a/README.markdown b/README.markdown index 40580358..2c2f46af 100755 --- a/README.markdown +++ b/README.markdown @@ -39,6 +39,12 @@ apt update && apt install mysql-server # NB: Select "Use Legacy Authentication Method (Retain MySQL 5.x Compatibility)" ``` +#### FreeBSD + +``` +sudo pkg install nginx py39-supervisor lang/python310 +``` + #### Windows On Windows we recommended downloading the MSI installer as it will make it easier to configure the new server during the installation