jackboyla commited on
Commit
e001cc7
·
1 Parent(s): 9f58171

Reorders installs

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,9 +8,9 @@ repo_url = "https://github.com/jackboyla/GLiREL"
8
  subprocess.run(["git", "clone", repo_url])
9
 
10
  subprocess.run(["pip", "install", "./GLiREL"])
 
11
  subprocess.run(["pip", "install", "-r", "./GLiREL/requirements.txt"])
12
 
13
- subprocess.run(["pip", "install", "spacy"])
14
  subprocess.run(["python", "-m", "spacy", "download", "en_core_web_sm"])
15
  subprocess.run(["python", "-m", "spacy", "download", "en_core_web_lg"])
16
 
 
8
  subprocess.run(["git", "clone", repo_url])
9
 
10
  subprocess.run(["pip", "install", "./GLiREL"])
11
+ subprocess.run(["pip", "install", "spacy"])
12
  subprocess.run(["pip", "install", "-r", "./GLiREL/requirements.txt"])
13
 
 
14
  subprocess.run(["python", "-m", "spacy", "download", "en_core_web_sm"])
15
  subprocess.run(["python", "-m", "spacy", "download", "en_core_web_lg"])
16