-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenvironment.yml
More file actions
35 lines (35 loc) · 852 Bytes
/
environment.yml
File metadata and controls
35 lines (35 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# run: conda env create --file environment.yml
name: deep3dcomp
channels:
- pytorch # Channel ordering is important!
- nvidia
- pytorch3d
- conda-forge
dependencies:
- python=3.10
- pytorch=1.13.0 # Later versions do not work with PyTorch3d.
- torchvision
- torchaudio
- pytorch-cuda=11.7 # NOTE: The version may differ on your system! Maybe change to: cudatoolkit=11.3
- pytorch3d # Linux-only! Maybe comment this out on Windows.
- ipython
- pip
- pandas
- scipy
- matplotlib
- scikit-image>=0.19.3
- psutil
- trimesh
- plyfile
- scikit-learn
- pip:
- bpy
- mesh_to_sdf
- pyrender
- pyvista
- tensorboard
- point-cloud-utils
- rtree
- robust_laplacian
- pqdm
# - ipykernel # Might be needed if you run Jupyter Notebooks in VSCode