ch-tseng commited on
Commit
454e16a
·
1 Parent(s): 09016b9
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -61,7 +61,11 @@ st.set_page_config(
61
 
62
  #------------------------
63
  if not os.path.exists(base_download_path):
64
- os.makedirs(base_download_path)
 
 
 
 
65
 
66
  if HuggingFace is False:
67
  model_count = int(os.getenv("model_count"))
 
61
 
62
  #------------------------
63
  if not os.path.exists(base_download_path):
64
+ try:
65
+ os.makedirs(base_download_path)
66
+ except:
67
+ print("folder exists", base_download_path)
68
+ pass
69
 
70
  if HuggingFace is False:
71
  model_count = int(os.getenv("model_count"))