Skip to content

Commit

Permalink
small m1 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
4141done committed Nov 8, 2023
1 parent aa8ee93 commit 91ddd23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/setup_venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,9 @@ source "${VIRTUAL_ENV}/bin/activate"

set -o nounset # abort on unbound variable

echo "USING PYTHON VERSION $(python --version)"
echo "PIP VERSION $(pip3 --version)"

# Use the latest version of pip and pipenv
pip3 install --upgrade pip
pip3 install pipenv
Expand Down
1 change: 1 addition & 0 deletions docker/build_dev_docker_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ i386) ARCH="386" ;;
i686) ARCH="386" ;;
x86_64) ARCH="amd64" ;;
aarch64) ARCH="arm64v8" ;;
arm64) ARCH="arm64v8" ;;
arm) dpkg --print-architecture | grep -q "arm64" && ARCH="arm64v8" || ARCH="arm" ;;
*)
echo >&2 "Unable to determine system architecture."
Expand Down

0 comments on commit 91ddd23

Please sign in to comment.