How to build a stable Conda environment for running Diffpose
Closed this issue · 4 comments
98zhenyu commented
- Please, what version of Python does the environment require to run for Diffpose?
- Currently, I've built a Conda environment with Python 3.10, but when I try to directly 'pip install diffpose', it throws an error due to missing PyTorch3D dependency.
- Is it correct for me to reconfigure the environment by installing 'environment.yml' from Diffpose, like 'pip install -e .'?
eigenvivek commented
Hi @98zhenyu , thanks for letting me know. It should work to install from source like this:
mamba create -f environment.yml
mamba activate diffpose
pip install -e .
pobi123 commented
Hi @98zhenyu , thanks for letting me know. It should work to install from source like this:
mamba create -f environment.yml mamba activate diffpose pip install -e .
Hello, what should I do if an error occurs when executing condacreate -f environment.yml?
eigenvivek commented
Hi @pobi123 , what errors are you getting?
eigenvivek commented
sorry the first line should've said mamba env create -f environment.yml