$ brew install pyenv-virtualenv pyenv $ vim ~/.zshrc export PYENV_ROOT="${HOME}/.pyenv" if [ -d "${PYENV_ROOT}" ]; then export PATH=${PYENV_ROOT}/bin:$PATH eval "$(pyenv init -)" fi $ source ~/.zshrc
pyenv install -l pyenv install 2.7.7 pyenv versions
mkdir %project home% cd %project home% pyenv virtualenv 2.7.7 netcomm_dev pyenv local netcomm_dev pyenv version
$ pip install -e . $ pip install -r requirements.txt
pip freeze
PEP8: http://pep8-ja.readthedocs.org/ja/latest/#
Google Python Style Guide: http://works.surgo.jp/translation/pyguide.html
Sphinx, docstring
cookiecutter: PasteScript: http://collective-docs.takanory.net/tutorials/paste.html#
unittest2, pytest, doctest
Distutils, setuptools (distribute)