Grounded-Segment-Anything
Grounded-Segment-Anything copied to clipboard
Can't install pip install --no-build-isolation -e GroundingDINO
Hi, I am facing some problem about the installation. I do following command
git clone https://github.com/Shilin-LU/MACE.git conda create -n mace python=3.10 conda activate mace conda install pytorch==2.0.1 torchvision==0.15.2 pytorch-cuda=11.7 -c pytorch -c nvidia export AM_I_DOCKER=False export BUILD_WITH_CUDA=True
cd MACE git clone https://github.com/IDEA-Research/Grounded-Segment-Anything.git cd Grounded-Segment-Anything
Install Segment Anything:
python -m pip install -e segment_anything
Install Grounding DINO:
pip install --no-build-isolation -e GroundingDINO
but something wrong happen saying my
I check using my terminal is nvcc --version is cuda 12.3
but I use export CUDA_HOME=/path/to/cuda-11.7/
I got another error
also my nvcc --version is still 12.3 but the above cuda version is mismatch doesn't exist but go this another error .....
thx for helping me!
hey, you should change your path,such as "CUDA_HOME=/usr/local/cuda-12.1"
1 make sure that your torch version is compatible with CUDA 12.3 2 CUDA_HOME=/usr/local/cuda-12.3 @JustinKai0527