Changes between Version 33 and Version 34 of InstallationGuidelines/Developer/PostPython
- Timestamp:
- 09/13/17 17:35:02 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/Developer/PostPython
v33 v34 3 3 4 4 == Install Web2Py == 5 As a Developer, it is best to run the Trunk version of Web2Py, so that you can fine-tune the version that you have installed & get involved with the Web2Py developer community:6 5 {{{ 7 6 git clone https://github.com/web2py/web2py.git --recursive 8 7 }}} 9 ,,'''Note''': HTTPS clones are not read-only (while git:// clones are). They will NOT work if your git is not configured as previously described.10 8 11 12 There are occasional issues with the latest Trunk, so you may need to try a slightly older revision. If this is needed, after downloading: 9 As of 2017-09-13 Sahana does not support web2py 2.15.* - you need to revert to web2py-2.14.6. 13 10 {{{ 14 11 cd web2py 15 git log16 git checkout <hash>12 git reset --hard cda35fd 13 git submodule update 17 14 }}} 18 "git log" shows you a log including the hash-value of every revesion. Checkout sets your working-copy to the revision with the specified hash-value.19 15 20 16