Skip to content

Commit

Permalink
Try python3 -m pip
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccorm4 committed Dec 13, 2024
1 parent 1770c03 commit 78cfaf8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ jobs:
run: |
apt update -y
apt install -y --no-install-recommends clang-format-15 cmake libb64-dev rapidjson-dev libre2-dev git wget software-properties-common
apt install -y python3 python3-pip
rm -rf /var/lib/apt/lists/*
wget -O /tmp/boost.tar.gz https://archives.boost.io/release/1.80.0/source/boost_1_80_0.tar.gz && (cd /tmp && tar xzf boost.tar.gz) && mv /tmp/boost_1_80_0/boost /usr/include/boost
pip install build pytest
# To avoid system/pip package conflict errors - use a venv:
# https://stackoverflow.com/questions/75602063/pip-install-r-requirements-txt-is-failing-this-environment-is-externally-mana
#python3 -m venv .venv
#source .venv/bin/activate
apt install -y python3 python3-pip
python3 -m pip install build pytest
- name: Build
run: |
Expand Down

0 comments on commit 78cfaf8

Please sign in to comment.