본문 바로가기

mac6

[Mac] VirtualBox 설치하기 www.virtualbox.org/wiki/Downloads Downloads – Oracle VM VirtualBox Download VirtualBox Here you will find links to VirtualBox binaries and its source code. VirtualBox binaries By downloading, you agree to the terms and conditions of the respective license. If you're looking for the latest VirtualBox 6.0 packages, see Virt www.virtualbox.org 1. OS X hosts 선택 2. 상자모양 더블클릭 3. 보안 및 개인 정보 보호 허용 2020. 12. 19.
Mac MySQL 설치하기 Homebrew 설치하기 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" MySQL 설치하기 brew install mysql MySQL 서버 실행 # To have launchd start mysql now and restart at login: brew services start mysql # Or, if you don't want/need a background service you can just run: mysql.server start 설정하기 mysql_secure_installation 1. 복잡한 비밀번호로 설정? Would you like to setup VAL.. 2020. 8. 8.
Homebrew 명령어 모음 Homebrew 설치하기 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" Homebrew 업데이트 brew update Homebrew 검사하기 brew doctor 패키지 검색 brew search 무엇 설치된 패키지 목록 확인 brew list 패키지 설치 brew install 무엇 패키지 업그레이드 brew upgrade 무엇 패키지 삭제 brew uninstall 무엇 이전 버전의 패키지 삭제 brew cleanup 무엇 brew로 설치한 패키지 위치 /usr/local/Cellar Cask : Mac에 응용프로그램 설치 Error: Calling brew cask in.. 2020. 7. 11.
pip3을 pip으로 변경하기 1. zsh 터미널에서 bashrc로 들어가기 vim ~/.bashrc 2. pip3를 pip이라 지정하기 # pip3을 pip이라 지정하기 alias pip = "pip3" # 저장/나가기 :wq 3. 적용하기 source .bashrc - 끝 - 2020. 4. 1.
mac terminal setting :: 맥 터미널 설정 1. iterm2 설치 https://iterm2.com/downloads.html Downloads - iTerm2 - Mac OS Terminal Replacement iTerm2 by George Nachman. Website by Matthew Freeman, George Nachman, and James A. Rosen. Website updated and optimized by HexBrain iterm2.com 2. Oh my zsh 설치 sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 3. vi편집기에서 ZSH_THEME="robbyrussell" ➡️ "agnoster" 4. d2cod.. 2019. 11. 29.
[Mac] python 환경 구성하기 :: Homebrew, pyenv, Anaconda Homebrew : Homebrew는 Apple(또는 Linux 시스템)에서 제공하지 않는 유용한 패키지 관리자를 설치한다. formulae.brew.sh/formula/ homebrew 설치하기 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 👆터미널에 복붙 > 비밀번호 입력 > Enter brew update brew list #현재 설치된 패키지 목록 brew install #패키지 설치하기 brew remove #패키지 제거하기 brew search #패키지가 있는지 확인 ex) brew install python brew remove python brew search .. 2019. 11. 27.