weify627 / 4D-Rotor-Gaussians

Apache License 2.0
79 stars 5 forks source link

Installation of PyTorch3D Fails Due to Missing fvcore Dependency #2

Closed KohsukeIde closed 3 months ago

KohsukeIde commented 3 months ago

Issue summary

When trying to install pytorch3d from the provided link, the installation fails due to a missing dependency: fvcore.

The installation process fails with the following error message:

ERROR: Could not find a version that satisfies the requirement fvcore (from pytorch3d) (from versions: none)
ERROR: No matching distribution found for fvcore

Fix

The issue can be resolved by manually installing fvcore before installing pytorch3d:

pip install -U 'git+https://github.com/facebookresearch/fvcore' # pip install fvcore also works
pip install --no-index --no-cache-dir pytorch3d -f https://dl.fbaipublicfiles.com/pytorch3d/packaging/wheels/py38_cu118_pyt200/download.html