You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
827 B
24 lines
827 B
#!/bin/bash
|
|
|
|
# >>> conda initialize >>>
|
|
# !! Contents within this block are managed by 'conda init' !!
|
|
__conda_setup="$('/home/rog/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /devnull)"
|
|
if [ $? -eq 0 ]; then
|
|
eval "$__conda_setup"
|
|
else
|
|
if [ -f "/home/rog/anaconda3/etc/profile.d/conda.sh" ]; then
|
|
. "/home/tog/anaconda3/etc/profile.d/conda.sh"
|
|
else
|
|
export PATH="/home/rog/anaconda3/bin:$PATH"
|
|
fi
|
|
fi
|
|
unset __conda_setup
|
|
# <<< conda initialize <<<
|
|
|
|
|
|
export CUDA_HOME=/opt/cuda/
|
|
eval "$(conda shell.bash hook)"
|
|
conda activate /opt/core/core/tracker_human_car
|
|
#python -c "from tracker.pytracking.evaluation.environment import create_default_local_file; create_default_local_file()"
|
|
#python -c "from tracker.ltr.admin.environment import create_default_local_file; create_default_local_file()"
|
|
python app.py
|