File size: 287 Bytes
e0d0d76 |
1 2 3 4 5 6 7 8 9 |
#!/usr/bin/env bash
# You should source this script to get the correct additions to Python path
# Directory of script
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Set up the python paths
export PYTHONPATH=${PYTHONPATH}:${DIR}/
export PYTHONPATH=${PYTHONPATH}:${DIR}/Model/ |