Skip to content

Commit

Permalink
setup.sh: Give pip multiple dependencies in one run
Browse files Browse the repository at this point in the history
pip has a real dependency resolver now so give it multiple dependencies at once so the resolver can perform resolution.
  • Loading branch information
cclauss authored Aug 15, 2024
1 parent 8ff35b4 commit 08abe7e
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,8 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
cd "$DIR"

python3 -m pip install Cython
python3 -m pip install numpy
python3 -m pip install jinja2
python3 -m pip install wheel
python3 -m pip install sphinx
python3 -m pip install sphinx-rtd-theme
python3 -m pip install pbxproj
python3 -m pip install --upgrade pip wheel
python3 -m pip install Cython jinja2 numpy pbxproj sphinx sphinx-rtd-theme
brew install zlib

# Python
Expand Down

0 comments on commit 08abe7e

Please sign in to comment.