milyiyo commited on
Commit
770c729
·
1 Parent(s): 4630377

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -7,18 +7,18 @@ import cv2
7
 
8
  # -----------------
9
  import os
10
- print('DEBUG: Cloning diffusers project')
11
  os.system('git clone https://github.com/huggingface/diffusers')
12
 
13
- print('DEBUG: Pwd')
14
  os.system('pwd')
15
  os.system('ls -la')
16
 
17
- print('DEBUG: Install dependencies of diffusers')
18
  os.system('cd diffusers && pip install -e .')
19
 
20
- print('DEBUG: Pip install from the build of diffusers')
21
- os.system('pip install git+file:///content/diffusers')
22
 
23
  from diffusers import DiffusionPipeline
24
  # -----------------
 
7
 
8
  # -----------------
9
  import os
10
+ print('\nDEBUG: Cloning diffusers project')
11
  os.system('git clone https://github.com/huggingface/diffusers')
12
 
13
+ print('\nDEBUG: Pwd')
14
  os.system('pwd')
15
  os.system('ls -la')
16
 
17
+ print('\nDEBUG: Install dependencies of diffusers')
18
  os.system('cd diffusers && pip install -e .')
19
 
20
+ print('\nDEBUG: Pip install from the build of diffusers')
21
+ os.system('pip install git+file:///home/user/app/diffusers')
22
 
23
  from diffusers import DiffusionPipeline
24
  # -----------------