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"