summaryrefslogtreecommitdiffstats
path: root/bashrc/node/laptop/virtualenv.sh
blob: d0fe6a763612d87800a62b7f412e5d6d04f20298 (plain) (blame)
1
2
3
4
5
6
7
8
9
if hash "virtualenvwrapper.sh" 2>/dev/null; then
	export WORKON_HOME=~/dev/python

	if [ -e ${WORKON_HOME} ]; then
		mkdir -p $WORKON_HOME
	fi

	source $(which virtualenvwrapper.sh)
fi