perler commited on
Commit
6720d6f
1 Parent(s): ea84346

torch cluster missing

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -79,8 +79,11 @@ def run_on_gpu(input_point_cloud: gr.utils.NamedString,
79
 
80
 
81
  def main():
 
82
  # git submodule doesn't work in Gradio, so we clone it here
83
  subprocess.run(['git', 'clone', 'https://github.com/cg-tuwien/ppsurf.git'])
 
 
84
 
85
  description_header = '# PPSurf: Combining Patches and Point Convolutions for Detailed Surface Reconstruction'
86
 
 
79
 
80
 
81
  def main():
82
+ # Zero-GPU doesn't work with docker anymore, so here some manual setup
83
  # git submodule doesn't work in Gradio, so we clone it here
84
  subprocess.run(['git', 'clone', 'https://github.com/cg-tuwien/ppsurf.git'])
85
+ # subprocess.run(['pip', 'install', '-r', 'ppsurf/requirements', '--no-cache-dir'])
86
+ subprocess.run(['pip', 'install', '-r', 'requirements', '--no-cache-dir'])
87
 
88
  description_header = '# PPSurf: Combining Patches and Point Convolutions for Detailed Surface Reconstruction'
89