Getting Started
Welcome to the CARLA Driving Simulator Client!
This guide will help you get started with installation, setup, and running your first simulation.
Installation
Clone the repository:
git clone https://github.com/AkshayChikhalkar/carla-driving-simulator-client.git cd carla-driving-simulator-client
Install dependencies:
pip install -e .[dev,docs]
(Optional) Build documentation locally:
cd docs sphinx-build -b html . _build/html
Quickstart
Option 1: Docker Compose (Recommended)
docker-compose -f docker-compose-prod.yml up -d
Option 2: Docker Direct
docker pull akshaychikhalkar/carla-driving-simulator-client:latest
docker run -p 8081:8000 akshaychikhalkar/carla-driving-simulator-client:latest
Option 3: Local Development
python run.py
Access the Application
Open your browser and navigate to: http://localhost:8081
Log in with your credentials
Start exploring the CARLA simulation interface
For more details, see the README or the API Reference.