blob: e12dfc48beab4e8095cd6bc17c46795f44f27be8 [file] [log] [blame]
Chris Kayd0837902021-11-17 10:17:52 +00001#!/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 Kay23be56a2021-12-07 16:25:05 +00009python3 -m venv .venv
10
11source .venv/bin/activate
12
13(
14 export PIP_CACHE_DIR=${project_filer}/pip-cache
15
16 python3 -m pip install --upgrade pip
Harrison Mutaib76cecf2023-02-16 14:12:40 +000017 python3 -m pip install poetry==1.3.2 ||
18 python3 -m pip install poetry==1.3.2 --no-cache-dir
Chris Kay23be56a2021-12-07 16:25:05 +000019)