ZhiyuanthePony commited on
Commit
6a5ad9d
·
1 Parent(s): e0305d4
Files changed (2) hide show
  1. requirements.txt +1 -1
  2. setup.sh +9 -0
requirements.txt CHANGED
@@ -23,5 +23,5 @@ huggingface_hub==0.24.7
23
  # plyfile
24
 
25
  # diffmc
26
- diso
27
  einops
 
23
  # plyfile
24
 
25
  # diffmc
26
+ # diso
27
  einops
setup.sh CHANGED
@@ -8,4 +8,13 @@ pip install --force-reinstall -v "numpy==1.25.2"
8
  echo "Installing other requirements..."
9
  pip install -r requirements.txt
10
 
 
 
 
 
 
 
 
 
 
11
  echo "Setup completed successfully!"
 
8
  echo "Installing other requirements..."
9
  pip install -r requirements.txt
10
 
11
+
12
+ # Compile and install DISO package
13
+ echo "Compiling and installing DISO..."
14
+ pip install ninja
15
+ git clone https://github.com/SarahWeiii/diso.git
16
+ cd diso
17
+ pip install -e .
18
+ cd ..
19
+
20
  echo "Setup completed successfully!"