Skip to content

Commit

Permalink
fix: pip constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Apr 29, 2024
1 parent 2e3f94b commit 77ea1f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions installation/routines/setup_jukebox_core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ _jukebox_core_install_python_requirements() {
source "$VIRTUAL_ENV/bin/activate"

pip install --upgrade pip
ZMQ_PREFIX="${JUKEBOX_ZMQ_PREFIX}" ZMQ_DRAFT_API=1 LDFLAGS="-Wl,-rpath,${JUKEBOX_ZMQ_PREFIX}/lib" \
pip install --no-cache-dir -r "${INSTALLATION_PATH}/requirements.txt" -c "${INSTALLATION_PATH}/constraint.txt"
PIP_CONSTRAINT="${INSTALLATION_PATH}/constraint.txt" \
ZMQ_PREFIX="${JUKEBOX_ZMQ_PREFIX}" ZMQ_DRAFT_API=1 LDFLAGS="-Wl,-rpath,${JUKEBOX_ZMQ_PREFIX}/lib" \
pip install --no-cache-dir -r "${INSTALLATION_PATH}/requirements.txt"
}

_jukebox_core_configure_pulseaudio() {
Expand Down

0 comments on commit 77ea1f6

Please sign in to comment.