Changes between Version 37 and Version 38 of Python3Support


Ignore:
Timestamp:
Feb 15, 2019, 12:21:48 PM (5 years ago)
Author:
neteler
Comment:

virtualenv-3 -> virtualenv

Legend:

Unmodified
Added
Removed
Modified
  • Python3Support

    v37 v38  
    649649We can rather easily create an isolated environment with Python3 using virtualenv which lets you test GRASS GIS with Python3 support while not cluttering your standard system.
    650650
    651 Installation of virtualenv-3:
     651Installation of Python-3 virtualenv:
    652652{{{
    653653# on Fedora
     
    679679# FOR CURRENT USER ONLY
    680680# 4a) on Fedora
    681 virtualenv-3 -p python3 grasspy3
     681virtualenv -p python3 grasspy3
    682682# 4a) on Debian/Ubuntu
    683683virtualenv -p python3 grasspy3
     
    685685# OR AS SYSTEM-SIDE VIRTUALENV
    686686# 4b) on Fedora
    687 virtualenv-3 -p python3 grasspy3 --system-site-packages
     687virtualenv -p python3 grasspy3 --system-site-packages
    688688# 4b) on Debian/Ubuntu
    689689virtualenv -p python3 grasspy3 --system-site-packages
     
    721721Test GRASS GIS with Python3:
    722722{{{
    723 # just run it in the virtualenv-3 session
     723# just run it in the virtualenv session
    724724grass77 --gui
    725725}}}
    726726
    727 In order to deactivate the virtualenv-3 environment, run
     727In order to deactivate the virtualenv environment, run
    728728{{{
    729729deactivate