Deepdrive sim docs
Deepdrive homeDocs home
v2-security-updates
v2-security-updates
  • Deepdrive sim
  • Deepdrive Sim Docs
    • Setup
      • Linux Development
        • Running the Unreal Editor from a Docker container
        • Export from prebuilt docker image
        • Traditional Unreal Setup
      • Windows Development
    • Compiling changes to plugins
    • Vulkan
    • python_bindings
    • Unreal Logging
    • Packaging
    • Architecture
  • Plugins
    • DeepDrivePlugin
      • Source
        • DeepDrivePython
          • LICENSE
    • deepdrive_kevindale
    • Aka Jamestown
  • LICENSE
Powered by GitBook
On this page
  • Prerequisites
  • Build the ue4-full image
  • Build the deepdriveio/ue4-deepdrive-deps image
  • Export Unreal to your local filesystem
  • Build and run the project against the exported UnrealEngine
  • Clean and build

Was this helpful?

  1. Deepdrive Sim Docs
  2. Setup
  3. Linux Development

Export from prebuilt docker image

PreviousRunning the Unreal Editor from a Docker containerNextTraditional Unreal Setup

Last updated 5 years ago

Was this helpful?

Prerequisites

  • NVIDIA Docker 2

Make sure the ue4-ci-helpers package is up to date

pip install --upgrade ue4-ci-helpers
pip install ue4-docker

Build the ue4-full image

Build the deepdriveio/ue4-deepdrive-deps image

Export Unreal to your local filesystem

ue4-docker export installed deepdriveio/ue4-deepdrive-deps:latest ~/UnrealInstalled

Set the default version of Unreal with the

ue4 setroot ~/UnrealInstalled

Build and run the project against the exported UnrealEngine

Now you're ready to build and run the project. This is what you'll do any time you've pulled in the latest changes from GitHub as well.

Download maps

python Packaging/package.py --download-jamestown

Clean and build

Do the following the first time you export or anytime you pull latest from deepdrive-sim.

Clean your deepdrive-sim project directory to clear any stale build data

./clean_all.sh

Build and run - takes ~5 minutes

ue4 build
ue4 run
https://adamrehn.com/docs/ue4-docker/use-cases/linux-installed-builds
https://github.com/deepdrive/ue4-deepdrive-deps
ue4cli