Skip to content

Commit

Permalink
Install wheel separately
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Sep 15, 2019
1 parent a286e33 commit 2721594
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/install_app.template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ TMP_DIR=$(mktemp -d "${TMPDIR:-/tmp}/iov_ledger_app_install.XXXXXXXXX")
# shellcheck disable=SC1091
source ./iov-ledger/bin/activate

pip install --disable-pip-version-check wheel ledgerblue
# wheel needs to be installed separately to avoid errors in the upcoming installations
pip install --disable-pip-version-check wheel

pip install --disable-pip-version-check ledgerblue

if [[ "${1:-}" == "--uninstall" ]]; then
python -m ledgerblue.deleteApp \
Expand Down

0 comments on commit 2721594

Please sign in to comment.