mirror of
https://github.com/python/cpython.git
synced 2026-01-07 16:02:55 +00:00
[3.12] doc: fix venv creating for the local Python using uv (GH-129094) (#129097)
Co-authored-by: Filipe Laíns 🇵🇸 <lains@riseup.net>
This commit is contained in:
parent
e6cb31a098
commit
728c6b89a6
1 changed files with 1 additions and 1 deletions
|
|
@ -172,7 +172,7 @@ venv:
|
|||
else \
|
||||
echo "Creating venv in $(VENVDIR)"; \
|
||||
if $(UV) --version >/dev/null 2>&1; then \
|
||||
$(UV) venv $(VENVDIR); \
|
||||
$(UV) venv --python=$(PYTHON) $(VENVDIR); \
|
||||
VIRTUAL_ENV=$(VENVDIR) $(UV) pip install -r $(REQUIREMENTS); \
|
||||
else \
|
||||
$(PYTHON) -m venv $(VENVDIR); \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue