mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 16:28:59 +08:00
f78f4440df
* [python3] Bootstrap pip with ${CURRENT_INSTALLED_DIR} * [python3] Disable ensurepip -- add venv usage instructions Co-authored-by: Max Khon <fjoe@samodelkin.net>
9 lines
319 B
Plaintext
9 lines
319 B
Plaintext
The package python3 provides a python interpreter that supports virtual environments:
|
|
|
|
>tools\python3\python3.10 -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.
|