blob: b249bb2edbc6a50dc478428d972e2c5aa470ea23 [file] [log] [blame] [edit]
#!/bin/bash
# Copyright 2020 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
WD=$(pwd)
cd "$(dirname "$(realpath "${0}")")" || exit
python3 -m venv my_visualizations
source my_visualizations/bin/activate
pip install -r requirements.txt
pip install .
# Install our version of portage.
pip install ../../../src/third_party/portage_tool/
cd "${WD}" || exit