PrismJeff commited on
Commit
9660988
·
1 Parent(s): 190f70c

Fix: pip error

Browse files
Files changed (1) hide show
  1. gradio_app.py +2 -1
gradio_app.py CHANGED
@@ -68,7 +68,8 @@ if ENV == 'Huggingface':
68
 
69
  print("Installing custom_rasterizer...")
70
  subprocess.run(
71
- shlex.split("pip install -e ./hy3dpaint/custom_rasterizer"),
 
72
  check=True
73
  )
74
 
 
68
 
69
  print("Installing custom_rasterizer...")
70
  subprocess.run(
71
+ "cd ./hy3dpaint/custom_rasterizer && pip install -e .",
72
+ shell=True,
73
  check=True
74
  )
75