From ee47556280fcdaebca0974d3d9c9684a47e4d202 Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Tue, 20 Feb 2024 00:38:46 +0100 Subject: [PATCH] test bundled pyzmq --- installation/routines/setup_jukebox_core.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/installation/routines/setup_jukebox_core.sh b/installation/routines/setup_jukebox_core.sh index cb85198be..8e6ca4adf 100644 --- a/installation/routines/setup_jukebox_core.sh +++ b/installation/routines/setup_jukebox_core.sh @@ -78,14 +78,14 @@ _jukebox_core_build_and_install_pyzmq() { print_lc " Install pyzmq with libzmq-drafts to support WebSockets" if ! pip list | grep -F pyzmq >> /dev/null; then - mkdir -p "${JUKEBOX_ZMQ_TMP_DIR}" || exit_on_error - if [ "$BUILD_LIBZMQ_WITH_DRAFTS_ON_DEVICE" = true ] ; then - _jukebox_core_build_libzmq_with_drafts - else - _jukebox_core_download_prebuilt_libzmq_with_drafts - fi - - ZMQ_PREFIX="${JUKEBOX_ZMQ_PREFIX}" ZMQ_DRAFT_API=1 \ + # mkdir -p "${JUKEBOX_ZMQ_TMP_DIR}" || exit_on_error + # if [ "$BUILD_LIBZMQ_WITH_DRAFTS_ON_DEVICE" = true ] ; then + # _jukebox_core_build_libzmq_with_drafts + # else + # _jukebox_core_download_prebuilt_libzmq_with_drafts + # fi + + ZMQ_PREFIX=bundled ZMQ_DRAFT_API=1 \ pip install -v --no-binary pyzmq pyzmq else print_lc " Skipping. pyzmq already installed"