{"id":25696717,"url":"https://github.com/tizee/manual-install-guide","last_synced_at":"2026-02-12T00:32:47.184Z","repository":{"id":106358656,"uuid":"283259496","full_name":"tizee/manual-install-guide","owner":"tizee","description":"a collection of how-tos for manual installation","archived":false,"fork":false,"pushed_at":"2020-09-15T16:36:06.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-03T08:51:07.429Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/tizee.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-07-28T15:53:40.000Z","updated_at":"2020-09-15T16:36:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"d1caf6dd-dd93-43cd-ad8b-7dab7ae74dc2","html_url":"https://github.com/tizee/manual-install-guide","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tizee/manual-install-guide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmanual-install-guide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmanual-install-guide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmanual-install-guide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmanual-install-guide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tizee","download_url":"https://codeload.github.com/tizee/manual-install-guide/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmanual-install-guide/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29351000,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T20:11:40.865Z","status":"ssl_error","status_checked_at":"2026-02-11T20:10:41.637Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":"2025-02-25T01:55:07.432Z","updated_at":"2026-02-12T00:32:47.173Z","avatar_url":"https://github.com/tizee.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n    \u003ch3\u003emanual-install-guide\u003ch3\u003e\n    \u003cp\u003eA personal collection for manual installations guide\u003c/p\u003e\n\u003c/div\u003e\n\n## Why? \u003c!-- omit in toc --\u003e\nI'm too lazy to search the web for tool/lib/language(tarballs) manual installation how-tos (especially tools I had installed before).\nDue to some network reasons(GFW), I would choose offline installation instead of running the script for downloading the same tarball in most cases.\n\n## TOC \u003c!-- omit in toc --\u003e\n- [Rust](#rust)\n- [Golang](#golang)\n- [deno](#deno)\n- [Cxx Boost library](#cxx-boost-library)\n\n## How-tos \u003c!-- omit in toc --\u003e\n\n### Rust\n\n1. use `rustup` and see `https://github.com/rust-lang/rustup#other-installation-methods`\n2. execute `rust-init`\n\n### Golang\n\n1. download and unzip/tar extract the golang distribution file\n2. mkdir `/usr/local/go` for `$GOROOT` and `$HOME/.go` for `$GOPATH`\n3. mv unziped files to `/usr/local/go` \n4. setup environment variables in your bash configuration file with `export PATH=$GOROOT/bin:$GOPATH/bin:$PATH`\n\n### deno\n\nAccording to [denoland/deno_install](https://github.com/denoland/deno_install), we should follow these steps:\n\n1. download and unzip deno release \n2. mkdir `$HOME/.deno` and `$HOME/.deno/bin`\n3. copy executable file `deno` to  `$HOME/.deno/bin`\n4. add environment variable `export $DENO_INSTALL=` and update `PATH` with `export PATH=$DENO_INSTALL/bin:$PATH`to shell configuration file like `.bashrc`, `.zshrc` etc \n\nActually you could use `export DENO_INSTALL_ROOT=\"$HOME/.deno/bin\"` instead of `$DENO_INSTALL`  so that you only need to update `PATH` with `export $DENO_INSTALL_ROOT:$PATH`\n\n```md\nENVIRONMENT VARIABLES:\n    DENO_DIR             Set the cache directory\n    DENO_INSTALL_ROOT    Set deno install's output directory\n                         (defaults to $HOME/.deno/bin)\n    DENO_CERT            Load certificate authority from PEM encoded file\n    NO_COLOR             Set to disable color\n    HTTP_PROXY           Proxy address for HTTP requests\n                         (module downloads, fetch)\n    HTTPS_PROXY          Proxy address for HTTPS requests\n                         (module downloads, fetch)\n```\n\n### Cxx Boost library\n\n1. Download latest release from [https://www.boost.org/users/download/#live](https://www.boost.org/users/download/#live)\n\n2. run commands.\n\n```bash\ntar zxf boost_xxxxx\ncd boost_xxxxx\n./bootstrap.sh # default install to /usr/local\n./b2 # build\n./b2 install # install\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftizee%2Fmanual-install-guide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftizee%2Fmanual-install-guide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftizee%2Fmanual-install-guide/lists"}