mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 17:03:56 +08:00
* initial commit
* CPU working in dokcer
* Update selfdrive/manager.py
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
* Update selfdrive/manager.py
* fixes
* fixing env var
* fixes
* building and running in docker
* camerad fix
* camerad fix
* this ACTUALLY works
* removing unused libraries
* updating to CARLA 0.9.11
* removing useless flags
* small changes
* forgot this
* sudo not needed for xhost
* final changes
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
old-commit-hash: 968ed10200
17 lines
334 B
Bash
Executable File
17 lines
334 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd /tmp
|
|
FILE=CARLA_0.9.11.tar.gz
|
|
rm -f $FILE
|
|
curl -O https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/$FILE
|
|
|
|
rm -rf carla_tmp
|
|
mkdir -p carla_tmp
|
|
cd carla_tmp
|
|
tar xvf ../$FILE PythonAPI/
|
|
easy_install PythonAPI/carla/dist/carla-0.9.11-py3.7-linux-x86_64.egg || true
|
|
|
|
cd ..
|
|
rm -rf /tmp/$FILE
|
|
rm -rf carla_tmp
|