{"id":15436014,"url":"https://github.com/uetchy/macos-setup-guidebook","last_synced_at":"2026-02-28T15:31:42.888Z","repository":{"id":27756230,"uuid":"31244344","full_name":"uetchy/macOS-Setup-Guidebook","owner":"uetchy","description":"The guidebook to configure OS X for development.","archived":false,"fork":false,"pushed_at":"2016-01-29T11:50:08.000Z","size":7,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-21T19:27:41.718Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/uetchy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-24T04:18:06.000Z","updated_at":"2016-09-23T02:37:00.000Z","dependencies_parsed_at":"2022-08-01T12:07:19.846Z","dependency_job_id":null,"html_url":"https://github.com/uetchy/macOS-Setup-Guidebook","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/uetchy/macOS-Setup-Guidebook","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uetchy%2FmacOS-Setup-Guidebook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uetchy%2FmacOS-Setup-Guidebook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uetchy%2FmacOS-Setup-Guidebook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uetchy%2FmacOS-Setup-Guidebook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uetchy","download_url":"https://codeload.github.com/uetchy/macOS-Setup-Guidebook/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uetchy%2FmacOS-Setup-Guidebook/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29940284,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T13:49:17.081Z","status":"ssl_error","status_checked_at":"2026-02-28T13:48:50.396Z","response_time":90,"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":"2024-10-01T18:47:37.723Z","updated_at":"2026-02-28T15:31:42.867Z","avatar_url":"https://github.com/uetchy.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# OS X Setup Guidebook\n\nThe guidebook to configure OS X for development.\n\n## Before setup\n\n### Install Xcode and Command Line Tools.\n\n```console\nxcode-select --install\n```\n\n## Sublime Text\n\n```console\nSUBLIME_LOCAL_DIR=\"$HOME/Library/Application Support/Sublime Text 3\"\nSUBLIME_SYNC_DIR=\"$HOME/Dropbox/Sync/Sublime Text\"\n\nrm -rf \"$SUBLIME_LOCAL_DIR/Installed Packages\"\nrm -rf \"$SUBLIME_LOCAL_DIR/Packages\"\nln -s \"$SUBLIME_SYNC_DIR/Installed Packages\" \"$SUBLIME_LOCAL_DIR/Installed Packages\"\nln -s \"$SUBLIME_SYNC_DIR/Packages\" \"$SUBLIME_LOCAL_DIR/Packages\"\n```\n\n## Finder\n\n### Shell\n\n```console\nbrew install zsh\nsudo sh -c \"cat \u003c\u003cEOD \u003e /etc/paths 2\u003e\u00261\n/usr/local/bin\n/usr/bin\n/bin\n/usr/local/sbin\n/usr/sbin\n/sbin\nEOD\"\nsudo sh -c \"echo '/usr/local/bin/zsh' \u003e\u003e /etc/shells\"\nchsh -s /usr/local/bin/zsh\n```\n\n### Homebrew\n\n```console\n/usr/bin/ruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\"\nbrew update\nbrew tap homebrew/binary\nbrew tap homebrew/science\nbrew install curl --with-ssh\nbrew install \\\n\topenssl \\\n\treadline \\\n\tgit \\\n\twget \\\n\thub \\\n\tpeco \\\n\tawscli \\\n\tjq\n```\n\n### Ruby\n\n```console\nbrew install ruby\ngem update --system\ngem update\ngem install bundler\n```\n\n### Python\n\n```console\nbrew install pyenv\npyenv install 3.4.3\npyenv global 3.4.3\n\npyenv install miniconda3-*\n```\n\n### OpenCV\n\n```console\nbrew install opencv --with-jasper --with-qt --with-tbb\n```\n\n### Node.js\n\n```console\nbrew install node\nnpm install -g npm-checks yo generator-license\n```\n\n### Go\n\n```conosle\nbrew install go --with-cc-all\n```\n\n### ImageMagick\n\n```console\nbrew cask install xquartz\nbrew install imagemagick\n```\n\n### TeX ###\n```console\nbrew cask install basictex\nexport PATH=\"/Library/TeX/texbin:$PATH\"\nsudo tlmgr update --self --all\nsudo tlmgr install collection-langjapanese draftcopy epsf boxedminipage here comment\n```\n\n### iOS Development ###\n```\ngem install cocoapods\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuetchy%2Fmacos-setup-guidebook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuetchy%2Fmacos-setup-guidebook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuetchy%2Fmacos-setup-guidebook/lists"}