depot_tools conflict between python 2 and 3

5.4k Views Asked by At

I've seen variations on this error but no resolution.

Installing depot_tools on a Desktop folder, Lubuntu 18.04.

git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git

resolves (apparently) perfectly fine; mod of PATH is fine, no ~, absolute path.

$python -V = 2.7.17

/usr/lib also contains python3, python3.6, python 3.7, and python 3.8

Calls to gclient sync or fetch return:

/home/arctos/Desktop/stream/depot_tools/bootstrap_python3: line 32: bootstrap-3.8.0.chromium.8_bin/python3/bin/python3: No such file or directory
/home/arctos/Desktop/stream/depot_tools/bootstrap_python3: line 32: bootstrap-3.8.0.chromium.8_bin/python3/bin/python3: No such file or directory
cat: /home/arctos/Desktop/stream/depot_tools/python3_bin_reldir.txt: No such file or directory
/home/arctos/Desktop/stream/depot_tools/vpython3: line 52: /home/arctos/Desktop/stream/depot_tools/.cipd_bin/vpython3: No such file or directory

Examining bootstrap_python3 shows:

  BOOTSTRAP_PATH="bootstrap-${PYTHON3_VERSION}_bin"

  # Install CIPD packages. The CIPD client self-bootstraps.
  "cipd" ensure -log-level warning -ensure-file "${CIPD_MANIFEST}" \
      -root "$BOOTSTRAP_PATH"

  BOOTSTRAP_PYTHON_BIN="${BOOTSTRAP_PATH}/python3/bin/python3"
  "$BOOTSTRAP_PYTHON_BIN" "bootstrap/bootstrap.py" --bootstrap-name "$BOOTSTRAP_PATH"

so it appears that there is a conflict somewhere trying to set BOOTSTRAP_PATH that includes {PYTHON3_VERSION}. GCLIENT.PY contains

# Warn when executing this script with Python 3 when the GCLIENT_PY3 environment
# variable is not set to 1.
# It is an increasingly common error on Windows 10 due to the store version of
# Python.
if (sys.version_info.major >= 3
    and not 'GCLIENT_TEST' in os.environ
    and os.getenv('GCLIENT_PY3') != '1'):
  print('Warning: Running gclient on Python 3. \n'
        'If you encounter any issues, please file a bug on crbug.com under '
        'the Infra>SDK component.', file=sys.stderr)

Now, sys.version_info.major shows Python 2.7.17, NOT Python 3. That conflict might be rooted in GCLIENT_SMOKETEST_BASE.PY which contains

class GClientSmokeBase(fake_repos.FakeReposTestBase):
  def setUp(self):
    super(GClientSmokeBase, self).setUp()
    # Make sure it doesn't try to auto update when testing!
    self.env = os.environ.copy()
    self.env['DEPOT_TOOLS_UPDATE'] = '0'
    self.env['DEPOT_TOOLS_METRICS'] = '0'
    # Suppress Python 3 warnings and other test undesirables.
    self.env['GCLIENT_TEST'] = '1'
    self.env['GCLIENT_PY3'] = '0' if sys.version_info.major == 2 else '1'
    self.maxDiff = None

but I'm unable to determine the proper fix for this that will allow depot_tools to install/run correctly.

It's also worth nothing that this is a new error; installs two weeks ago were fine.

0

There are 0 best solutions below