-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathenvironment.yml
47 lines (39 loc) · 1014 Bytes
/
environment.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
# Note: conda dependencies have only 1 "="
# pip dependencies have 2 "=="
# Fuse pip dependencies together under one " - pip" item
# Otherwise, only some of the are installed, because conda creates a temporary requirements.txt file
# only the last -pip section
name: gghead
channels:
- pytorch
- conda-forge
- nvidia/label/cuda-11.8.0
dependencies:
- python=3.8
- pip
- jupyter
# CUDA and PyTorch
- gcc<12 # Needs to be <12 because nvcc does not like gcc>11
- pytorch
- torchvision
- pytorch-cuda=11.8
- cuda-nvcc # for nvcc
- cuda-cudart-dev # for cuda_runtime.h
- cuda-toolkit
- libcusparse-dev
- glm # For gsplat
- pip:
- tyro
- environs
- elias==0.3.4
- dreifus
- mediapy
- wandb
- pytorch_lightning
# For EG3D visualizer
- eg3d@git+https://github.com/tobias-kirschstein/eg3d.git
- imgui==1.3.0
- glfw==2.2.0
- pyopengl==3.1.5
# Data processing
- visage >= 0.2.2