Open shubiao-xu opened 10 months ago
Hi, Since the error mentions CUDA (cudart.lib), you can check if you have the correct version of the CUDA Toolkit installed, as required by GroundingDINO. Compatibility between CUDA, PyTorch, and your GPU driver is usually crucial.
gaussian-grouping-main/Tracking-Anything-with-DEVA/Grounded-Segment-Anything/GroundingDINO/setup.py: cmdclass={"build_ext": torch.utils.cpp_extension.BuildExtension}, 修改为: cmdclass={'build_ext':torch.utils.cpp_extension.BuildExtension.with_options(use_ninja=False)},
Thanks for open-sourcing your project! But there is an error when installing GroundingDINO by using command "python -m pip install -e GroundingDINO". The detail is as follows: ` error: subprocess-exited-with-error
× python setup.py develop did not run successfully. │ exit code: 1 ╰─> [48 lines of output] Building wheel groundingdino-0.1.0 Compiling with CUDA running develop D:\python\envs\gaussian_grouping2\lib\site-packages\setuptools\command\develop.py:40: EasyInstallDeprecationWarning: easy_install command is deprecated. !!
` Could you please help me solve this problem or give me some suggestions?