real-stanford / diffusion_policy

[RSS 2023] Diffusion Policy Visuomotor Policy Learning via Action Diffusion
https://diffusion-policy.cs.columbia.edu/
MIT License
1.1k stars 206 forks source link

Conda environment build takes forever #33

Open yuelei0428 opened 7 months ago

yuelei0428 commented 7 months ago

The conda environment takes forever to build on my end. Does anyone know how to solve it?

cheng-chi commented 7 months ago

Hi @yuelei0428, conda's dependency is notriously slow. Please try mamba instead (now default for miniforge) https://github.com/conda-forge/miniforge

yxydw98 commented 5 months ago

Try the following if it stuck at solving environment forever.

conda update conda 
dominickrei commented 4 months ago

You can also try setting the default conda solver to be mamba's solver. This was the quickest solution for me.

conda install -n base conda-libmamba-solver
conda config --set solver libmamba
conda env create -f conda_environment.yaml