jhoons' Life
MacBook Python Environment 본문
맥 터미널
iTerm2 : https://www.iterm2.com/downloads.html
빠른 서치 앱
Alfred : https://www.alfredapp.com/
VirtualEnv 이용해서 파이선 버전 관리
pip install virtualenv (& virtualenvwrapper)
Brew 이용해서 편집기 vim / zshell / wget / git 다운
brew install neovim (neovim download not necessary for zsh though...)
brew install zsh zsh-completions (download zsh and zsh-completions )
brew install wget
brew install git
Oh-My-Zsh 다운로드
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
"Please look over .zshrc file to select plugins, themes, and options."
터미널 활용앱 tmux / Zshell의 플러그인 매니저 Zplug 다운로드
brew install tmux
brew install zplug
[ Installing Dotfiles ] : terminal/zsh/vim+a 설정
- Weblink: https://github.com/wookayin/dotfiles
- git clone --recursive https://github.com/wookayin/dotfiles.git ~/.dotfiles
- cd ~/.dotfiles && python install.py
- python install.py --force (if need enforcement)
- Update:
- >>> dotfiles update
[ Virtualenvwrapper ] : virtualenv 사용법
- Create virtualenv
- >>> mkvirtualenv (env_name) --python=<python_version>
- Remove virtualenv
- >>> rmvirtualenv (env_name)
- Get into virtualenv
- >>> workon (env_name)
- Get out of virtualenv
- >>> deactivate
'Tech. > Python.' 카테고리의 다른 글
맥북에 Python 설치하기. (0) | 2017.08.05 |
---|---|
Python Objective-Oriented Programming Tutorial (0) | 2017.07.27 |
Awesome Python Visualization Tools (0) | 2017.07.23 |