diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/python3/usage.unix | |
Diffstat (limited to 'vcpkg/ports/python3/usage.unix')
| -rw-r--r-- | vcpkg/ports/python3/usage.unix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vcpkg/ports/python3/usage.unix b/vcpkg/ports/python3/usage.unix new file mode 100644 index 0000000..fc2a575 --- /dev/null +++ b/vcpkg/ports/python3/usage.unix @@ -0,0 +1,9 @@ +The package python3 provides a python interpreter that supports virtual environments:
+
+ $ tools/python3/python3.@PYTHON_VERSION_MINOR@ -m venv /path/to/venv
+ $ export VIRTUAL_ENV=/path/to/venv
+ $ export PATH=/path/to/venv/bin:$PATH
+ $ export -n PYTHONHOME
+ $ unset PYTHONHOME
+
+ See https://docs.python.org/3/library/venv.html for more details.
|