{"id":20573562,"url":"https://github.com/timf34/jetsonconfig","last_synced_at":"2026-04-17T18:31:51.809Z","repository":{"id":176716853,"uuid":"659296715","full_name":"timf34/JetsonConfig","owner":"timf34","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-18T13:17:42.000Z","size":52,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-06T10:32:04.103Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/timf34.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-27T14:28:08.000Z","updated_at":"2024-06-18T13:17:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"cb8983d5-1579-49b0-a088-2b3e389676bf","html_url":"https://github.com/timf34/JetsonConfig","commit_stats":null,"previous_names":["timf34/jetsonconfig"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/timf34/JetsonConfig","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timf34%2FJetsonConfig","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timf34%2FJetsonConfig/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timf34%2FJetsonConfig/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timf34%2FJetsonConfig/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timf34","download_url":"https://codeload.github.com/timf34/JetsonConfig/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timf34%2FJetsonConfig/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31940751,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-16T05:28:07.860Z","updated_at":"2026-04-17T18:31:51.794Z","avatar_url":"https://github.com/timf34.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# JetsonConfig\r\n\r\n---\r\n\r\n- [ ] TODO: integrate notes from `interactive_setup.md` into this file!\r\n- [ ] TODO: Add notes on git creds (its in the notion, but not here)\r\n\r\n**Temp command for installing jetson-inference... I'll integrate this properly soon**\r\n\r\n```bash\r\ncd ~/Desktop \u0026\u0026 \\\r\nsudo bash -c 'apt-get update \u0026\u0026 \\\r\napt-get install -y git cmake \u0026\u0026 \\\r\ngit clone --recursive --depth=1 https://github.com/timf34/jetson-inference \u0026\u0026 \\\r\ncd jetson-inference \u0026\u0026 \\\r\nmkdir build \u0026\u0026 \\\r\ncd build \u0026\u0026 \\\r\ncmake ../ \u0026\u0026 \\\r\nmake -j$(nproc) \u0026\u0026 \\\r\nmake install \u0026\u0026 \\\r\nldconfig'\r\n```\r\n\r\n---\r\n\r\nThis repo contains scripts for setting up the Jetsons initially. \r\n\r\n`initial_jetson_setup.sh`\r\n\r\n- Downloads packages and clones repos needed for the Jetson\r\n\r\n`set_env_vars.sh`\r\n- Sets environment variables. **Note that we need to manually write these for each Jetson rn**\r\n\r\n\r\n`requirements.txt`\r\n- General pip requirements for the Jetson\r\n\r\n### Running \r\n\r\n**See the `interactive_setup.md` file for stuff that needs to be done before and after running `initial_jetson_setup.sh`**\r\n\r\n`set_env_vars.sh`\r\n- Be sure to change the variables!\r\n- Note that this script needs sudo priviledges!\r\nRun the following to run this script:\r\n```bash\r\nchmod +x set_env_vars.sh\r\n./set_env_vars.sh\r\n```\r\n\r\nAnd note that I can run this so I don't have to reboot the Jetson for the env variable to take place:\r\n`export DEVICE_NAME=\"marvel-fov-2\"`\r\n\r\n\r\n`initial_jetson_setup.sh`:\r\n\r\n```\r\nchmod +x initial_jetson_setup.sh\r\n./initial_jetson_setup.sh\r\n```\r\n\r\n### Notes \r\n\r\nWhen I run `initial_jetson_setup.sh` I'll need to input the following:\r\n\r\n- Github username and PAT (I should run the github storing thing beforehand so it remembers these)\r\n\r\n\r\nNote: I'm not sure if pip installing the requirements.txt file is working correctly, so I might need to \r\nrun `pip3 install -r requirements.txt` manually too.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimf34%2Fjetsonconfig","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimf34%2Fjetsonconfig","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimf34%2Fjetsonconfig/lists"}