Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions pip_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
scriptname=$0

hw=$(uname -m)
if [ "$hw" = x86_64 ]; then
pip3=$(find "/usr/local/bin" -iname pip3.11)
elif [ "$hw" = arm64 ]; then
pip3=$(find "/opt/homebrew/opt/python@3.12/bin" -iname pip3.12)
if [ "$hw" = arm64 ]; then
pip3=$(find "/opt/homebrew/opt/python@3.13/bin" -iname pip3.13)
else
exit 1
fi
Expand Down
Loading