Changes between Initial Version and Version 1 of Ticket #3719, comment 9


Ignore:
Timestamp:
Dec 27, 2018, 12:17:13 AM (5 years ago)
Author:
hellik

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3719, comment 9

    initial v1  
    55> build scripts must be updated [browser:grass-addons/tools/wingrass-packager] since grass77+ with python3 support will need to built in separated environment.
    66
    7 additionally some environment settings are needed to use python3; something like in ''qgis-bin.env'', e.g.
     7additionally some environment settings are needed to use python3; something like in ''python-qgis.bat'', e.g.
    88
    99
    1010{{{
    11 PATH=C:\OSGEO4~1\apps\qgis\bin;C:\OSGEO4~1\apps\Python37;C:\OSGEO4~1\apps\Python37\Scripts
    1211[...]
    13 PYTHONHOME=C:\OSGEO4~1\apps\Python37
     12call py3_env.bat
     13[...]
     14set PYTHONPATH=%OSGEO4W_ROOT%\apps\qgis\python;%PYTHONPATH%
     15"%PYTHONHOME%\python" %*
    1416}}}
    1517
     18the content of ''py3_env.bat''
     19
     20{{{
     21SET PYTHONPATH=
     22SET PYTHONHOME=%OSGEO4W_ROOT%\apps\Python37
     23PATH %OSGEO4W_ROOT%\apps\Python37;%OSGEO4W_ROOT%\apps\Python37\Scripts;%PATH%
     24}}}
     25