Chris Kay | d083790 | 2021-11-17 10:17:52 +0000 | [diff] [blame] | 1 | #!/usr/bin/env bash |
2 | |||||
3 | # | ||||
4 | # Copyright (c) 2021 Arm Limited. All rights reserved. | ||||
5 | # | ||||
6 | # SPDX-License-Identifier: BSD-3-Clause | ||||
7 | # | ||||
8 | |||||
9 | python3 -m venv .venv && \ | ||||
Chris Kay | 30feb95 | 2021-12-06 11:13:58 +0000 | [diff] [blame^] | 10 | source .venv/bin/activate && \ |
11 | python3 -m pip install -r "${tf_root}/docs/requirements.txt" \ | ||||
12 | --cache-dir "${project_filer}/pip-cache" --retries 30 --verbose |