Traceback (most recent call last):
File "/local/path/tartanair_dl.py", line 5, in <module>
import tartanair as ta
File "/git/path/tartanairpy/tartanair/__init__.py", line 1, in <module>
from . import tartanair
File "/git/path/tartanairpy/tartanair/tartanair.py", line 4, in <module>
from .customizer import TartanAirCustomizer, TartanAirFlowCustomizer
File "/git/path/tartanairpy/tartanair/customizer.py", line 25, in <module>
from .flow_calculation import depthmap_to_absolute_camera_coordinates, flow_occlusion_post_processing
File "/git/path/tartanairpy/tartanair/flow_calculation.py", line 10, in <module>
from .flow_utils import *
File "/git/path/tartanairpy/tartanair/flow_utils.py", line 10, in <module>
from .image_resampling.mvs_utils.camera_models import Pinhole, DoubleSphere, LinearSphere, Equirectangular, PinholeRadTanFast, EUCM, CameraModel
ModuleNotFoundError: No module named 'tartanair.image_resampling.mvs_utils.camera_models'
Newest commit as of writing (Apr 17th 2026), seems to be breaking imports:
The above trace came after:
$ pip install -e .and a similar trace withsite-packagesinstead of the local editable path is produced when the-eswitch is omitted from the installation command.