Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 939 Bytes

INSTALL.md

File metadata and controls

34 lines (19 loc) · 939 Bytes

Please creae posendf environment using one of these:

1.Create environment using requirements.txt file

conda create --name posendf --file requirements.txt

2. From scratch

Create environment

conda create -n posendf python=3.9
conda activate posendf

Install pytorch

conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.3 -c pytorch

Install other dependencies

conda install -c fvcore -c iopath -c conda-forge fvcore iopath
conda install -c bottler nvidiacub
conda install jupyter
pip install scikit-image matplotlib imageio plotly opencv-python
pip install trimesh

Install pytorch3d and faiss-gpu

conda install pytorch3d -c pytorch3d
conda install -c pytorch faiss-gpu

Please install pytorch3d and faiss using official documentation.