Home
last modified time | relevance | path

Searched refs:venv_python (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/python/setuptools/setuptools/tests/integration/
Dtest_pip_install_sdist.py86 def venv_python(tmp_path): function
93 def _prepare(tmp_path, venv_python, monkeypatch, request): argument
107 run([venv_python, "-m", "pip", "freeze"])
116 def test_install_sdist(package, version, tmp_path, venv_python, setuptools_wheel): argument
117 venv_pip = (venv_python, "-m", "pip")
132 run([venv_python, "-c", script])
/aosp_15_r20/external/pigweed/pw_env_setup/py/pw_env_setup/virtualenv_setup/
H A Dinstall.py62 def _installed_packages(venv_python): argument
63 cmd = (venv_python, '-m', 'pip', '--disable-pip-version-check', 'list')
280 venv_python = os.path.join(venv_bin, 'python')
317 venv_python,
429 venv_python,
/aosp_15_r20/external/python/setuptools/tools/
Dvendored.py171 venv_python = getattr(context, 'env_exec_cmd', context.env_exe)
173 subprocess.check_call([venv_python, "-m", "pip", "install", pkg])
175 venv_python,
/aosp_15_r20/external/python/cpython3/PC/
Dlauncher.c471 static wchar_t venv_python[MAX_PATH]; in locate_venv_python() local
483 _snwprintf_s(venv_python, MAX_PATH, _TRUNCATE, in locate_venv_python()
485 attrs = GetFileAttributesW(venv_python); in locate_venv_python()
487 debug(L"Python executable %ls missing from virtual env\n", venv_python); in locate_venv_python()
492 wcscpy_s(ip->executable, MAX_PATH, venv_python); in locate_venv_python()