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 | |
Chris Kay | 23be56a | 2021-12-07 16:25:05 +0000 | [diff] [blame] | 9 | python3 -m venv .venv |
| 10 | |
| 11 | source .venv/bin/activate |
| 12 | |
| 13 | ( |
| 14 | export PIP_CACHE_DIR=${project_filer}/pip-cache |
| 15 | |
| 16 | python3 -m pip install --upgrade pip |
Harrison Mutai | b76cecf | 2023-02-16 14:12:40 +0000 | [diff] [blame^] | 17 | python3 -m pip install poetry==1.3.2 || |
| 18 | python3 -m pip install poetry==1.3.2 --no-cache-dir |
Chris Kay | 23be56a | 2021-12-07 16:25:05 +0000 | [diff] [blame] | 19 | ) |