DRYな備忘録

Don't Repeat Yourself.

2018-04-03から1日間の記事一覧

Pythonの開発環境立ち上げメモ(virtualenvを使った最小構成)

現状確認 % which python /usr/bin/python % python --version Python 2.7.10 % which easy_install /usr/bin/easy_install % which pip pip not found % % sudo easy_install virtualenv % virtualenv -p /usr/bin/python ~/.venv/default % source ~/.venv…