Changes between Initial Version and Version 1 of Ticket #3719, comment 9
- Timestamp:
- 12/27/18 00:17:13 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3719, comment 9
initial v1 5 5 > build scripts must be updated [browser:grass-addons/tools/wingrass-packager] since grass77+ with python3 support will need to built in separated environment. 6 6 7 additionally some environment settings are needed to use python3; something like in '' qgis-bin.env'', e.g.7 additionally some environment settings are needed to use python3; something like in ''python-qgis.bat'', e.g. 8 8 9 9 10 10 {{{ 11 PATH=C:\OSGEO4~1\apps\qgis\bin;C:\OSGEO4~1\apps\Python37;C:\OSGEO4~1\apps\Python37\Scripts12 11 [...] 13 PYTHONHOME=C:\OSGEO4~1\apps\Python37 12 call py3_env.bat 13 [...] 14 set PYTHONPATH=%OSGEO4W_ROOT%\apps\qgis\python;%PYTHONPATH% 15 "%PYTHONHOME%\python" %* 14 16 }}} 15 17 18 the content of ''py3_env.bat'' 19 20 {{{ 21 SET PYTHONPATH= 22 SET PYTHONHOME=%OSGEO4W_ROOT%\apps\Python37 23 PATH %OSGEO4W_ROOT%\apps\Python37;%OSGEO4W_ROOT%\apps\Python37\Scripts;%PATH% 24 }}} 25