macOS7 [mac M1] brew를 활용한 간단한 MySQL 설치 및 간단한 명령어 brew를 통한 MySQL 설치하기 brew install # 먼저 brew를 update brew update # install brew install mysql brew를 통한 mysql server 실행 # start brew services start mysql # stop brew services stop mysql local 환경에서 연습하는 것이기 때문에 root 비번을 따로 설정하지 않았음. 만약 하고 싶으면, 아래 명령어를 통해 password 설정 mysql_secure_installation mysql 접속(실행) # pw 없는 경우 mysql -uroot # pw 있는 경우 (한 번에 명령) mysql -uroot -p{설정한 비번} # pw 있는 경우 (비번은 따로 치기) mysq.. 2023. 1. 10. [mac M1] DVC (Data Version Control) 설치 [공식홈페이지] https://dvc.org/ Data Version Control · DVC Open-source version control system for Data Science and Machine Learning projects. Git-like experience to organize your data, models, and experiments. dvc.org # brew를 통한 설치 brew install dvc # pip을 통한 설치 pip install dvc pip install 'dvc[all]'==2.8.1 # conda를 통한 설치 conda install -c conda-forge mamba # installs much faster than conda mamba instal.. 2023. 1. 6. [mac M1] git 설치 https://git-scm.com/download/mac Git - Downloading Package Download for macOS There are several options for installing Git on macOS. Note that any non-source distributions are provided by third parties, and may not be up to date with the latest source release. Homebrew Install homebrew if you don't already have it git-scm.com 터미널에서 설치하면 된다. # Homebrew를 통한 설치 brew install git # sudo를 통한 설치 sudo p.. 2023. 1. 5. minikube & kubectl 설치 및 minikube 간단히 동작해보기 공식문서 링크 minikube: https://minikube.sigs.k8s.io/docs/start/ kubectl: https://kubernetes.io/ko/docs/tasks/tools/install-kubectl-linux/ 위 공식 문서에서 따라가면 된다. macOS M1 (arm64) 기준 minikube 다운로드 # 순서대로 한 문장씩 명령어 입력 curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-arm64 sudo install minikube-darwin-arm64 /usr/local/bin/minikube # 정상 다운로드 확인 minikube --help # 버전 확인 minikube .. 2022. 12. 20. [Docker 입문 1] docker 설치 docker version Mac M1 기준 docker 설치방법 1. docker download 아래 링크에서 자신의 환경에 맞는 버전으로 docker를 다운로드 함 (저는 for mac, mac with apple chip) https://docs.docker.com/desktop/install/mac-install/ Install on Mac docs.docker.com mac이기 때문에 다운로드 받은 docker.dmg 파일을 드래그 앤 드랍을 통해 설치 이런건 가볍게 'OK'를 눌러주고, 접근권한이 필요하다는 것이니까 허용하는 것 2. Docker 설치 완료 화면 mac terminal에 명령을 날려서 docker가 정상적으로 설치되었는지 확인 사실 설치방법은 별거 없다. 그냥 설치하면 됨. 2022. 11. 10. 이전 1 2 다음