Mac
-
Argo Workflow 도입하기Computer Science/Argo 2023. 7. 4. 15:09
1. k8s 환경에 Argo Workflow 설치하기 2. local에 argo 설치하기 ( argo 명령어 사용 ) 3. test 1. k8s 환경에 Argo Workflow 설치하기 https://github.com/argoproj/argo-workflows/releases Releases · argoproj/argo-workflows Workflow engine for Kubernetes. Contribute to argoproj/argo-workflows development by creating an account on GitHub. github.com 해당 Releases 에서 가장 최신 버전으로 진행하였다. 지금은 3.4.8이다. 위 링크에 진행 방법이 전부 기입되어있다. kubectl cr..
-
Mac Os update 시 xcrun: error: 발생 해결Setting 2023. 1. 7. 11:08
mac os update 이후 git을 실행해보니 xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun 다음과 같은 오류가 발생했다. mac 이 os를 업데이트 하면서 CommandLineTools의 연결들이 끊기게 되는 현상이다. 해결 방안 xcode-select --install 위 명령어를 실행해주면 다시 재설치를 진행하며 해결된다.
-
Mac silicon homebrew 설치Setting 2023. 1. 3. 21:23
https://brew.sh/ Homebrew The Missing Package Manager for macOS (or Linux). brew.sh 공식 홈페이지에서 바로 설치방법을 알 수 있다. //2023.01.03 기준 아래와 같다. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 다운로드를 한 후 zsh: command not found: brew 해당 오류가 발생할 수 있다. 아래와 같이 zshrc 파일에 경로를 작성하여 적용한다면 바로 해결된다. vi ~/.zshrc eval $(/opt/homebrew/bin/brew shellenv) #저장후(:wq) source ~..
-
Mac 터미널 java version 임시 변경Computer Science/Java 2022. 11. 10. 00:43
java -version으로 현재 version을 확인해보면 17이다. java -version openjdk version "17.0.3" 2022-04-19 LTS OpenJDK Runtime Environment Corretto-17.0.3.6.1 (build 17.0.3+6-LTS) OpenJDK 64-Bit Server VM Corretto-17.0.3.6.1 (build 17.0.3+6-LTS, mixed mode, sharing) 변경을 하기전 /usr/libexec/java_home -V 명령어로 우선 내가 가지고 있는 jdk 목록을 확인해보자. /usr/libexec/java_home -V Matching Java Virtual Machines (2): 17.0.3 (x86_64) "Am..