python2.bat 433 B

1234567891011
  1. @echo off
  2. :: Copyright 2021 The Chromium Authors. All rights reserved.
  3. :: Use of this source code is governed by a BSD-style license that can be
  4. :: found in the LICENSE file.
  5. setlocal
  6. for %%d in (%~dp0..) do set PARENT_DIR=%%~fd
  7. for /f %%i in (%PARENT_DIR%\python_bin_reldir.txt) do set PYTHON_BIN_ABSDIR=%PARENT_DIR%\%%i
  8. set PATH=%PYTHON_BIN_ABSDIR%;%PYTHON_BIN_ABSDIR%\Scripts;%PATH%
  9. "%PYTHON_BIN_ABSDIR%\python.exe" %*