zju3dv / deltar

Code for "DELTAR: Depth Estimation from a Light-weight ToF Sensor And RGB Image", ECCV 2022
GNU General Public License v3.0
125 stars 6 forks source link

Setting up conda environment fails #18

Closed ChlaegerIO closed 5 months ago

ChlaegerIO commented 6 months ago

conda create --name deltar --file requirements.txt does not work for me as it does not find a lot of packages. PackagesNotFoundError: The following packages are not available from current channels: I installed conda on my wsl with Ubuntu-22.04. Which conda channels do you use?

ChlaegerIO commented 5 months ago

For others who have similar problems. I downloaded the specified version in a pip environment, at least those that are found with the version given in the file. Then I manually downloaded torch and torchvision with the cuda version pip install torch==1.12.0+cu113 torchvision==0.13.0+cu113 --extra-index-url https://download.pytorch.org/whl/cu113. Everything seems to work until now.