Skip to content

Commit

Permalink
Gruntfile: Use python3.10, not python3.11 #672 #699
Browse files Browse the repository at this point in the history
  • Loading branch information
lentinj committed Feb 5, 2024
1 parent f30b310 commit a91ef03
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down
6 changes: 6 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a91ef03

Please sign in to comment.