aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/python3/usage.win
blob: dcbb71747dcb9ce24c1515f65396eae65b045f99 (plain)
1
2
3
4
5
6
7
8
The package python3 provides a python interpreter that supports virtual environments:

    >tools\python3\python.exe -m venv c:\path\to\venv
    >set VIRTUAL_ENV=c:\path\to\venv
    >set PATH=c:\path\to\venv\bin;%PATH%
    >set PYTHONHOME=

    See https://docs.python.org/3/library/venv.html for more details.