summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/80_python
blob: f430b784e93d4cd47a33331de8edd21ef76dac85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# zshenv/80_python
#
# Set variables related to Python
#
# Copyright © 2014-2016 Tobias Klauser <tklauser@distanz.ch>
# Released under the terms of the Artistic Licence 2.0
#
# Source repository: git://git.distanz.ch/dotfiles/zsh.git

_PYTHON_USER=$HOME/.local/lib/python2.7/site-packages
_ZIPYTHON_LATEST=$HOME/tmp/ziPythonLatest/

[ -d $_PYTHON_USER ] && export PYTHONPATH=$_PYTHON_USER:$PYTHONPATH
[ -d $_ZIPYTHON_LATEST ] && export PYTHONPATH=$PYTHONPATH:$_ZIPYTHON_LATEST

# vim:ft=zsh