Error when Installing RPI5 Examples

Hi, I have followed [this tutorial](https://github.com/dev-shrubb3ry/hailo-playground/blob/main/doc/install-raspberry-pi5.md) and I faced errors when I do ./install.sh

hasan@raspberrypi:~/hailo-rpi5-examples $ ./install.sh
Sourcing environment variables and activating virtual environment…
Setting up the environment…
Setting up the environment for hailo-tappas-core…
TAPPAS_VERSION is 3.31.0. Proceeding…
You are not in the venv_hailo_rpi5_examples virtual environment.
Virtual environment exists. Activating…
TAPPAS_POST_PROC_DIR set to /usr/lib/aarch64-linux-gnu/hailo/tappas/post_processes
DEVICE_ARCHITECTURE is set to: HAILO8L
Installing additional system dependencies…
Reading package lists… Done
Building dependency tree… Done
Reading state information… Done
rapidjson-dev is already the newest version (1.1.0+dfsg2-7.1).
The following packages were automatically installed and are no longer required:
libcamera0.3 libwlroots12
Use ‘sudo apt autoremove’ to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Installing required Python dependencies…
Looking in indexes: Simple index, piwheels - Simple index
Collecting git+https://github.com/hailo-ai/hailo-apps-infra.git (from -r requirements.txt (line 4))
Cloning GitHub - hailo-ai/hailo-apps-infra to /tmp/pip-req-build-66xp1orx
Running command git clone --filter=blob:none --quiet GitHub - hailo-ai/hailo-apps-infra /tmp/pip-req-build-66xp1orx
error: RPC failed; curl 92 HTTP/2 stream 3 was not closed cleanly: CANCEL (err 8)
error: 264 bytes of body are still expected
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: index-pack failed
fatal: could not fetch e25c06381de65e6bcc2746d48e8bb6275e2c0d6a from promisor remote
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with ‘git status’
and retry with ‘git restore --source=HEAD :/’

error: subprocess-exited-with-error

× git clone --filter=blob:none --quiet GitHub - hailo-ai/hailo-apps-infra /tmp/pip-req-build-66xp1orx did not run successfully.
│ exit code: 128
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× git clone --filter=blob:none --quiet GitHub - hailo-ai/hailo-apps-infra /tmp/pip-req-build-66xp1orx did not run successfully.
│ exit code: 128
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.
hasan@raspberrypi:~/hailo-rpi5-examples $

Hey @kryptonicrevolution ,

This issue seems related to git clone .

  1. First check your internet connection with:
ping github.com
  1. If connection is good, try increasing buffer size:
git config --global http.postBuffer 524288000
  1. If still failing, try manual clone in your virtual environment:
cd /tmp
git clone https://github.com/hailo-ai/hailo-apps-infra.git
pip install /tmp/hailo-apps-infra

Let me know if you need any clarification with these steps.