Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setup.sh: Give pip multiple dependencies in a single run #256

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
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
Loading