Home
last modified time | relevance | path

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

/external/pigweed/pw_env_setup/py/pw_env_setup/virtualenv_setup/
Dinstall.py65 def _installed_packages(venv_python): argument
66 cmd = (venv_python, '-m', 'pip', 'list', '--disable-pip-version-check')
163 venv_python = os.path.join(venv_bin, 'python')
182 cmd = [venv_python, '-m', 'pip', 'install'] + list(args)
248 [venv_python, '-m', 'pip', 'list'],
/external/python/cpython3/PC/
Dlauncher.c461 static wchar_t venv_python[MAX_PATH]; in locate_venv_python() local
473 _snwprintf_s(venv_python, MAX_PATH, _TRUNCATE, in locate_venv_python()
475 attrs = GetFileAttributesW(venv_python); in locate_venv_python()
477 debug(L"Python executable %ls missing from virtual env\n", venv_python); in locate_venv_python()
482 wcscpy_s(ip->executable, MAX_PATH, venv_python); in locate_venv_python()