From 200943586f46eaa444f69fd15b58e2b23e35b730 Mon Sep 17 00:00:00 2001 From: serinko <97586125+serinko@users.noreply.github.com> Date: Wed, 15 May 2024 13:33:52 +0200 Subject: [PATCH] workflows python env update --- .github/workflows/cd-docs.yml | 4 +++- .github/workflows/ci-docs.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd-docs.yml b/.github/workflows/cd-docs.yml index 0ad8a4c5be4..23a69572594 100644 --- a/.github/workflows/cd-docs.yml +++ b/.github/workflows/cd-docs.yml @@ -10,8 +10,10 @@ jobs: - uses: actions/checkout@v3 - name: Install Dependencies (Linux) run: sudo apt-get update && sudo apt-get install -y build-essential curl wget libssl-dev libudev-dev squashfs-tools protobuf-compiler git python3 && sudo apt-get update --fix-missing + - name: Install pip3 + run: sudo apt install -y python3-pip - name: Install Python3 modules - run: sudo apt-get install -y python3-pandas python3-tabulate + run: sudo pip3 install pandas tabulate - name: Install rsync run: sudo apt-get install rsync - uses: rlespinasse/github-slug-action@v3.x diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml index 9a4ebf1a43d..d4d6eebd500 100644 --- a/.github/workflows/ci-docs.yml +++ b/.github/workflows/ci-docs.yml @@ -14,8 +14,10 @@ jobs: - uses: actions/checkout@v3 - name: Install Dependencies (Linux) run: sudo apt-get update && sudo apt-get install -y build-essential curl wget libssl-dev libudev-dev squashfs-tools protobuf-compiler git python3 && sudo apt-get update --fix-missing + - name: Install pip3 + run: sudo apt install -y python3-pip - name: Install Python3 modules - run: sudo apt-get install -y python3-pandas python3-tabulate + run: sudo pip3 install pandas tabulate - name: Install rsync run: sudo apt-get install rsync - uses: rlespinasse/github-slug-action@v3.x