forked from bradyz/2020_CARLA_challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.sh
36 lines (29 loc) · 1.03 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
27
28
29
30
31
32
33
34
35
#!/bin/bash
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/opt/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/opt/anaconda3/etc/profile.d/conda.sh" ]; then
. "/opt/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/opt/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
conda activate /home/jack/anaconda3/envs/python37
# export DISPLAY=:25
# export XAUTHORITY=/home/ubuntu/.Xauthority
# export QT_X11_NO_MITSHM=1
export CARLA_ROOT=/home/jack/Research/CARLA_0.9.10.1
export PORT=2000
export HAS_DISPLAY=1
export PROJECT_PATH=.
export TEAM_AGENT=image_agent.py
export PYTHONPATH=$PYTHONPATH:$CARLA_ROOT/PythonAPI/carla
export PYTHONPATH=$PYTHONPATH:$CARLA_ROOT/PythonAPI/carla/dist/carla-0.9.10-py3.7-linux-x86_64.egg
export PYTHONPATH=$PYTHONPATH:leaderboard
export PYTHONPATH=$PYTHONPATH:leaderboard/team_code
export PYTHONPATH=$PYTHONPATH:scenario_runner