zsh : command not found : adb
·
Android
문제zsh : command not found : adb이유PATH 환경변수에 Android SDK의 platform-tools 디렉토리가 등록되어 있지 않아서 adb 명령어를 찾을 수 없음.해결방법안드로이드 sdk 위치 파악Android Studio를 설치한 경우상단 바에서 Android Studio 클릭Setting 클릭Languages & Frameworks 클릭Android SDK 클릭Android SDK Location 확인.../sdk/platform-tools 폴더 위치를 path에 추가SDK 플랫폼 도구로 다운 받은 경우다운받은 platform-tools 폴더 위치를 path에 추가zshrc에 변수 추가zshrc 열기vi ~/.zshrcadb 항목 추가# adbexport PATH=$PAT..
<Window> adb install 및 환경변수 설정
·
Android
SDK Tool 다운로드방법 1: Android Studio 설치다운로드 주소https://developer.android.com/studioSDK 위치 확인Android Studio 설정에서 SDK 경로 확인방법 2: SDK 플랫폼 툴 다운로드다운로드 주소https://developer.android.com/tools/releases/platform-tools권장 압축 해제 위치C:\platform-tools\또는C:\Android\platform-tools\환경 변수 설정(Window 11 기준)환경 변수 설정 화면 열기윈도우 버튼 오른클릭시스템 클릭고급 시스템 설정 클릭고급 시스템 설정 창에서 환경 변수 버튼 클릭환경 변수 추가시스템 변수 항목에서 Path 변수 열기 (없으면 새로 생성)이전에 확인..
postgresql install, init
·
카테고리 없음
PostgreSQL 설치 및 설정 가이드설치 및 초기 설정 순서설치디렉토리 생성권한 설정초기화서비스 시작현재 사용자 DB 생성brew설치brew install postgresql@17서비스 시작brew services start postgresql@17서비스 정지brew services stop postgresql@17상태 확인brew services list | grep postgresql환경변수 설정.zshrc 열기vi ~/.zshrc변수 추가# PostgreSQLexport PATH="/opt/homebrew/opt/postgresql@17/bin:$PATH"적용source ~/.zshrc콘솔 창 진입psql postgres초기 설정디렉토리 생성mkdir -p /opt/homebrew/var/pos..
scancode-toolkit(about code) 설치
·
개발 도와주는 프로그램
ScanCode & AboutCode오픈SW 라이선스 검사도구이며 오픈 소스로 공개되어 있음.코드를 스캔해 패키지 및 종속성, 라이선스, 저작권 등을 감지 해줌.문서 작성하며 사용한 개발 환경mac m3homebrew 설치 되어있음Python 3.12공식 레포지토리scancodeiohttps://scancodeio.readthedocs.io/en/latest/installation.html#local-developmentscancode-toolkithttps://scancode-toolkit.readthedocs.io/en/stable/getting-started/install.html의존성 설치brew install universal-ctagsbrew install gettextbrew install ..
초대받은 github Organization 깃크라켄(gitkraken) 권한 추가
·
개발일기/개발 팁
깃허브 어플리케이션 설정 진입https://github.com/settings/connections/applications/a7557949433b7d282a76 GitHub: Let’s build from hereGitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea...github.com또는깃허브 설정에서 어플리케이션 항목 선택 요청을 보낼 Organization Request 클릭권한이 있는 조직은 체크표시..
M1 homebrew 설치와 zsh
·
개발일기/개발 팁
homebrew 설치https://brew.sh/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"brew 경로 설정echo 'export PATH=/opt/homebrew/bin:$PATH' >> ~/.zshrcvi ./.zshrcsource ~/.zshrc