Frigate script issue #1222

Closed
opened 2026-02-04 23:46:43 +03:00 by OVERLORD · 6 comments
Owner

Originally created by @JC38 on GitHub (Jul 4, 2025).

Have you read and understood the above guidelines?

Yes

📜 What is the name of the script you are using?

Frigate

📂 What was the exact command used to execute the script?

bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/frigate.sh)"

⚙️ What settings are you using?

  • Default Settings
  • Advanced Settings

🖥️ Which Linux distribution are you using?

Debian 11

📝 Provide a clear and concise description of the issue.

When the script is running, it fails downloading tensorflow-2.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (644.8 MB)

From the LXC , running the command pip install -r /opt/frigate/docker/main/requirements-ov.txt helped finishing this part, but after I don't know what to do.

🔄 Steps to reproduce the issue.

The script shows :
`Requirement already satisfied: pygments<3.0.0,>=2.6.0 in /usr/local/lib/python3.9/dist-packages (from rich->keras>=3.5.0->tensorflow->-r /opt/frigate/docker/main/requirements-ov.txt (line 2)) (2.19.2)
Downloading tensorflow-2.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (644.8 MB)
━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 402.9/644.8 MB 44.5 MB/s eta 0:00:06
WARNING: Connection timed out while downloading.
error: incomplete-download

× Download failed because not enough bytes were received (402.9 MB/644.8 MB)
╰─> URL: 0d43cde213/tensorflow-2.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

note: This is an issue with network connectivity, not pip.
hint: Consider using --resume-retries to enable download resumption.

Paste the full error output (if available).

[ERROR] in line 104: exit code 0: while executing command $STD pip install -r /opt/frigate/docker/main/requirements-ov.txt

[ERROR] in line 1185: exit code 0: while executing command lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/"var_install".sh)" ?`

🖼️ Additional context (optional).

This command : lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/"var_install".sh)" ? I think can be run from the LXC like this : curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/"$var_install".sh
With $var_install replaced with ???
However, the url doesn't seem to be ok.
Can someone can confirm and gives the correct command line ? Will it be enough to finish the install ?
I tried twice, and everytime the full script ended at the tensorflow download.

Originally created by @JC38 on GitHub (Jul 4, 2025). ### ✅ Have you read and understood the above guidelines? Yes ### 📜 What is the name of the script you are using? Frigate ### 📂 What was the exact command used to execute the script? bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/frigate.sh)" ### ⚙️ What settings are you using? - [x] Default Settings - [ ] Advanced Settings ### 🖥️ Which Linux distribution are you using? Debian 11 ### 📝 Provide a clear and concise description of the issue. When the script is running, it fails downloading tensorflow-2.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (644.8 MB) From the LXC , running the command pip install -r /opt/frigate/docker/main/requirements-ov.txt helped finishing this part, but after I don't know what to do. ### 🔄 Steps to reproduce the issue. The script shows : `Requirement already satisfied: pygments<3.0.0,>=2.6.0 in /usr/local/lib/python3.9/dist-packages (from rich->keras>=3.5.0->tensorflow->-r /opt/frigate/docker/main/requirements-ov.txt (line 2)) (2.19.2) Downloading tensorflow-2.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (644.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 402.9/644.8 MB 44.5 MB/s eta 0:00:06 WARNING: Connection timed out while downloading. error: incomplete-download × Download failed because not enough bytes were received (402.9 MB/644.8 MB) ╰─> URL: https://files.pythonhosted.org/packages/61/91/0d43cde213a1b65a857d07144cfe170d5083b43467cac5e1806fb758a4cf/tensorflow-2.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl note: This is an issue with network connectivity, not pip. hint: Consider using --resume-retries to enable download resumption. ### ❌ Paste the full error output (if available). [ERROR] in line 104: exit code 0: while executing command $STD pip install -r /opt/frigate/docker/main/requirements-ov.txt [ERROR] in line 1185: exit code 0: while executing command lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/"$var_install".sh)" $?` ### 🖼️ Additional context (optional). This command : lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/"$var_install".sh)" $? I think can be run from the LXC like this : curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/"$var_install".sh With $var_install replaced with ??? However, the url doesn't seem to be ok. Can someone can confirm and gives the correct command line ? Will it be enough to finish the install ? I tried twice, and everytime the full script ended at the tensorflow download.
OVERLORD added the bug label 2026-02-04 23:46:43 +03:00
Author
Owner

@MickLesk commented on GitHub (Jul 4, 2025):

× Download failed because not enough bytes were received (402.9 MB/644.8 MB

=> Network or something else, it breaks by install these File
Ive tested the Download now on 2 machines, work fine

And we cant do anything here, its the pip install from frigate requirements

@MickLesk commented on GitHub (Jul 4, 2025): × Download failed because not enough bytes were received (402.9 MB/644.8 MB => Network or something else, it breaks by install these File Ive tested the Download now on 2 machines, work fine And we cant do anything here, its the pip install from frigate requirements
Author
Owner

@JC38 commented on GitHub (Jul 4, 2025):

I've just retried again. And still have some download errors.
I have another Proxmox into another location, I will try the same script from there.
Could you give me the full command line for line 1185 without variable names but real values (for $CTID, it will be 104)

`deb https://packages.cloud.google.com/apt coral-edgetpu-stable main

  • echo 'libedgetpu1-max libedgetpu/accepted-eula select true'
  • debconf-set-selections
  • grep -q Debian /etc/issue
  • sed -i '-es/ main/ main contrib non-free/g' /etc/apt/sources.list
  • apt-get -qq update
  • apt-get -qq install --no-install-recommends --no-install-suggests -y libedgetpu1-max python3-tflite-runtime python3-pycoral
    E: Failed to fetch http://deb.debian.org/debian/pool/main/n/numpy/python3-numpy_1.19.5-1_amd64.deb Connection timed out [IP: 151.101.122.132 80]
    E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

[ERROR] in line 59: exit code 0: while executing command $STD /opt/frigate/docker/main/install_deps.sh

[ERROR] in line 1185: exit code 0: while executing command lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/"var_install".sh)" ?`

@JC38 commented on GitHub (Jul 4, 2025): I've just retried again. And still have some download errors. I have another Proxmox into another location, I will try the same script from there. Could you give me the full command line for line 1185 without variable names but real values (for $CTID, it will be 104) `deb https://packages.cloud.google.com/apt coral-edgetpu-stable main + echo 'libedgetpu1-max libedgetpu/accepted-eula select true' + debconf-set-selections + grep -q Debian /etc/issue + sed -i '-es/ main/ main contrib non-free/g' /etc/apt/sources.list + apt-get -qq update + apt-get -qq install --no-install-recommends --no-install-suggests -y libedgetpu1-max python3-tflite-runtime python3-pycoral E: Failed to fetch http://deb.debian.org/debian/pool/main/n/numpy/python3-numpy_1.19.5-1_amd64.deb Connection timed out [IP: 151.101.122.132 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? [ERROR] in line 59: exit code 0: while executing command $STD /opt/frigate/docker/main/install_deps.sh [ERROR] in line 1185: exit code 0: while executing command lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/"$var_install".sh)" $?`
Author
Owner

@MickLesk commented on GitHub (Jul 4, 2025):

That Error Out in the subshell, so its useless to Check this Line. It Breaks before and Not at this Part

@MickLesk commented on GitHub (Jul 4, 2025): That Error Out in the subshell, so its useless to Check this Line. It Breaks before and Not at this Part
Author
Owner

@MickLesk commented on GitHub (Jul 4, 2025):

This is the Error and its from Frigate Install himself:

ERROR] in line 59: exit code 0: while executing command $STD /opt/frigate/docker/main/install_deps.sh

@MickLesk commented on GitHub (Jul 4, 2025): This is the Error and its from Frigate Install himself: ERROR] in line 59: exit code 0: while executing command $STD /opt/frigate/docker/main/install_deps.sh
Author
Owner

@JC38 commented on GitHub (Jul 4, 2025):

Always errors when running bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/frigate.sh)" on another Proxmox running at another location

Image
@JC38 commented on GitHub (Jul 4, 2025): Always errors when running bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/frigate.sh)" on another Proxmox running at another location <img width="1686" height="546" alt="Image" src="https://github.com/user-attachments/assets/1af0e49c-e48e-4bd7-9baa-bea2f6f6c354" />
Author
Owner

@JC38 commented on GitHub (Jul 5, 2025):

Worked now. But with real default options, without changing anything but with verbose activated it was failing previously.

@JC38 commented on GitHub (Jul 5, 2025): Worked now. But with real default options, without changing anything but with verbose activated it was failing previously.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ProxmoxVE#1222