mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 20:03:53 +08:00
11 lines
254 B
Bash
Executable File
11 lines
254 B
Bash
Executable File
#!/bin/bash -e
|
|
FILE=CARLA_0.9.7.tar.gz
|
|
if [ ! -f $FILE ]; then
|
|
curl -O http://carla-assets-internal.s3.amazonaws.com/Releases/Linux/$FILE
|
|
fi
|
|
mkdir -p carla
|
|
cd carla
|
|
tar xvf ../$FILE
|
|
easy_install PythonAPI/carla/dist/carla-0.9.7-py3.5-linux-x86_64.egg
|
|
|