github链接:https://github.com/Linketic/VGGT-X
github提供环境版本
python 3.10
torch 2.3.1
torchvision==0.18.1
使用该环境下,会出现诸多错误。例如:pycolmap报错、triton报错
实际跑通环境版本
python 3.10
pycolmap==0.6.1
torch 2.7.1+cu118
torchvision 0.22.1+cu118
配置环境
conda create -n vggt_x python=3.10
conda activate vggt_x
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 -U
pip uninstall pycolmap
pip install "pycolmap==0.6.1" -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install triton-windows==3.2.0.post11
实际运行
python demo_colmap.py --scene_dir image
评论