-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrajnet.sh
38 lines (31 loc) · 875 Bytes
/
trajnet.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
36
37
38
## Create directory to setup Trajnet++
mkdir trajnet++
cd trajnet++
## Clone Repositories
git clone https://github.com/vita-epfl/trajnetplusplusdataset.git
git clone https://github.com/vita-epfl/trajnetplusplusbaselines.git
## Download Requirements
cd trajnetplusplusbaselines/
pip install -e .
cd ../trajnetplusplusdataset/
pip install -e .
pip install -e '.[test, plot]'
## Download Repository
wget https://github.com/sybrenstuvel/Python-RVO2/archive/master.zip
unzip master.zip
rm master.zip
## Setting up ORCA (steps provided in the Python-RVO2 repo)
cd Python-RVO2-master/
pip install cmake
pip install cython
python setup.py build
python setup.py install
cd ../
## Download Repository
wget https://github.com/svenkreiss/socialforce/archive/refs/heads/main.zip
unzip main.zip
rm main.zip
## Setting up Social Force
cd socialforce-main/
pip install -e .
cd ../