Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 785 Bytes

install_eigen.md

File metadata and controls

21 lines (13 loc) · 785 Bytes

Install Eigen

Eigen is installed by the build process into your AirSim folder, so after the build completes you will have ~/AirSim/eigen. The build is downloading eigen from Eigen 3.3.2 zip file

But your Unreal Projects will also need to be able to find this location and for that we set an EIGEN_ROOT environment variable. That variable needs to point to the eigen folder (not the eigen3 subfolder)

Windows

See how to set environment variables on windows.

Linux

On Linux you can use the usual trick if your current folder is set to your AirSim git repo:

echo export EIGEN_ROOT=$(pwd)/eigen >> ~/.bashrc
source  ~/.bashrc