MisEty / RTG-SLAM

RTG-SLAM: Real-time 3D Reconstruction at Scale Using Gaussian Splatting (ACM SIGGRAPH 2024)
https://gapszju.github.io/RTG-SLAM/
GNU General Public License v3.0
257 stars 25 forks source link

CUDA and torchvision error #14

Closed ShreyaIAB closed 3 months ago

ShreyaIAB commented 3 months ago

I am in the initial steps of installation. Instead of running the .yaml file, i am doing the installtions step by step (since the .yaml file is taking a long time to execute)

Here's the commands-

  1. conda create -n RTG-SLAM_v1 python=3.9.0 -y
  2. conda activate RTG-SLAM_v1
  3. conda install cuda -c nvidia/label/cuda-11.7.0
  4. pip install torch==1.13.1+cu117 torchvision==0.14.1+cu117 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu117

CUDA installation is done, however the step 4 leads to errors Capture Capture

ShreyaIAB commented 3 months ago

i downgraded numpy by adding the line

  1. pip install numpy==1.21.5 and now its looking better -- Capture