diff --git a/build_scripts/appimage/appimage.sh b/build_scripts/appimage/appimage.sh index cc0bf731846..d3c8c227eea 100755 --- a/build_scripts/appimage/appimage.sh +++ b/build_scripts/appimage/appimage.sh @@ -78,12 +78,14 @@ install_monkey_island_python_dependencies() { log_message "Installing island requirements" log_message "Installing pipenv" - "$APPDIR"/AppRun -m pip install pipenv==2022.8.14 || handle_error + "$APPDIR"/AppRun -m pip install pipenv || handle_error export CI=1 log_message "Installing dependencies" pushd "$BUILD_DIR/monkey_island" || handle_error - "$APPDIR"/AppRun -m pipenv --python "$APPDIR/AppRun" sync --system || handle_error + "$APPDIR"/AppRun -m pipenv --python "$APPDIR/AppRun" requirements > requirements.txt || handle_error + "$APPDIR"/AppRun -m pip install -r requirements.txt || handle_error + rm requirements.txt popd || handle_error log_message "Uninstalling pipenv (build dependency only)"