-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.sh
executable file
·26 lines (23 loc) · 1.33 KB
/
.env.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
################################################################################
########################### ENVIRONMENT Activation #############################
################################################################################
# Note:
# Here you can add your own environment activation commands whether you're
# using conda, virtualenv, etc.
SCRIPTDIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
[[ -f ${SCRIPTDIR}/venv/bin/activate ]] && source ${SCRIPTDIR}/venv/bin/activate
# Note: You do not need to modify the following sections at all.
################################################################################
################################# PYTHONPATH ###################################
################################################################################
# Note:
# The following two lines are necessary to make the project fall in the python
# import path without any installations through pip or other invasive actions
# to the environment. This allows researchers to make modifications and treat
# the code like a module at the same time.
SCRIPTDIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
PROJPARTENTDIR=$(dirname $SCRIPTDIR)
source $SCRIPTDIR/utils/bashfuncs.sh
field_append PYTHONPATH $SCRIPTDIR
export PYTHONPATH=$PYTHONPATH