Skip to content

Latest commit

 

History

History
87 lines (57 loc) · 5.53 KB

getting_started.md

File metadata and controls

87 lines (57 loc) · 5.53 KB

Getting Started

If you'd like to work with multiple scenes, or programmatically interact with SPEAR via Python, you will need to follow the steps below.

Clone this repository including submodules

The first step is to clone this repository including submodules. We have found that the recurse submodules features in some Git applications don't always download submodules as expected. We therefore recommend using the following commands.

git clone --recurse-submodules https://github.com/isl-org/spear path/to/spear

# checkout the code corresponding to a specific release
cd path/to/spear
git checkout v0.5.0

Install the spear Python package

The next step is to install the spear Python package as follows.

# create environment
conda create --name spear-env python=3.9
conda activate spear-env

# install msgpack-rpc-python separately from other Python dependencies, because we need
# to use a specific commit from a specific fork of the msgpack-rpc-python GitHub repository
pip install -e third_party/msgpack-rpc-python

# install the spear Python package
pip install -e python

Download scene data

In order to work with multiple scenes, we need to download the scene data as follows.

python tools/download_paks.py --paks_dir path/to/spear-paks

The --paks_dir argument is the top-level directory where scene data will be downloaded. You will need to provide this directory in other settings, e.g., when navigating through a specific scene (see below).

Navigate around a specific scene

At this point, you can use our run_executable.py command-line tool to select which scene you want to navigate around. If you wanted to navigate through our debug_0000 scene, you would use the following command.

python tools/run_executable.py --executable path/to/executable --scene_id debug_0000

Depending on your platform, you will need to specify the following path to your --executable. We provide links to precompiled binaries in our release notes.

Windows: path/to/SpearSim-v0.5.0-Win64-Shipping/SpearSim/Binaries/Win64/SpearSim-Win64-Shipping-Cmd.exe
macOS:   path/to/SpearSim-v0.5.0-Mac-Shipping/SpearSim-Mac-Shipping.app
Linux:   path/to/SpearSim-v0.5.0-Linux-Shipping/SpearSim.sh

You will also need to specify the following command-line arguments.

  • --scene_id is the name of the scene you want to navigate around (e.g., apartment_0000, debug_0000, kujiale_0000, kujiale_0001, ..., warehouse_0000). If you specify a kujiale or warehouse scene, then you also need to specify --paks_dir as the top-level directory containing your downloaded scene data.

The following command-line arguments are optional.

  • --vk_icd_filenames only has an effect on Linux, and is used to force the Vulkan runtime to load a vendor-specific GPU driver. Our run_executable.py script will set the VK_ICD_FILENAMES environment variable to whatever is passed into --vk_icd_filenames. This argument may or may not be necessary, depending on your specific hardware setup. If you have already set the VK_ICD_FILENAMES environment variable before invoking run_executable.py, you do not need to specify --vk_icd_filenames. If you have an NVIDIA GPU, you probably need to specify --vk_icd_filenames /usr/share/vulkan/icd.d/nvidia_icd.json.

Programmatically interact with SPEAR via Python

We provide several example applications that demonstrate how to programmatically interact with SPEAR via Python, and highlight what is currently possible with SPEAR. In order to run our example applications, you will need to follow the steps below.

In typical use cases, you will need to configure the behavior of SPEAR before you interact with it. In each of our example applications, we include a configuration file named user_config.yaml.example to use as a starting point. To run each example application, you must rename this file to user_config.yaml and modify the contents appropriately for your system. In all cases, you will need to set the SPEAR.STANDALONE_EXECUTABLE parameter to the location of your SpearSim executable (see the note above for which executable to use, depending on your platform). Your user_config.yaml file only needs to specify the value of a parameter if it differs from the defaults defined in the python/config directory. You can browse this directory for a complete set of all user-configurable parameters.

If you're running on Linux, you may need to set the SPEAR.ENVIRONMENT_VARS.VK_ICD_FILENAMES parameter to an appropriate value for your specific hardware setup. See the note above for a more detailed discussion.

You are now ready to run an example application.

python examples/getting_started/run.py

We recommend browsing through each of our example applications to get a sense of what is currently possible with SPEAR.