Skip to content

MAIXCAM runtime installation fails #190

@SmiteDiabeetus

Description

@SmiteDiabeetus

I have tried to install the runtime on my maixcam:

  1. connected maixcam to home wifi network, confirmed connectivity, attempted to install runtime. Error: "request lib failed"
  2. connected to cellular hotspot, confirmed connectivity, attempted to install runtime. Error: "request lib failed"
  3. connected to maixvision app, attempted install...it tries for a second then stops (no error message). Could not find any log files to check for error
  4. attempted manual install via python script:
import os

def install_runtime(force = False):
    version_path = "/maixapp/maixcam_lib.version"
    if force and os.path.exists(version_path):
        os.remove(version_path)
    cmd = f"chmod +x /maixapp/apps/settings/settings && /maixapp/apps/settings/settings install_runtime"
    err_code = os.system(cmd)
    if err_code != 0:
        print("[ERROR] Install failed, error code:", err_code)
    else:
        print(f"Install runtime success")


force_reinstall = True   # reinstall runtime even we alredy installed.
install_runtime(force_reinstall)
start running...

-- [I] Current runtime version: 
-- [E] Install runtime error: no network
[ERROR] Install failed, error code: 65280

program exited

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions