Hyeonseo commited on
Commit
e1cee17
β€’
1 Parent(s): 4f5afe7

Update env_set.py

Browse files
Files changed (1) hide show
  1. env_set.py +1 -0
env_set.py CHANGED
@@ -2,6 +2,7 @@ import subprocess
2
 
3
  def env_set():
4
  subprocess.run(f"pip install PyPDF2", shell=True)
 
5
  subprocess.run(f"wget https://nodejs.org/dist/v17.0.1/node-v17.0.1-linux-x64.tar.xz", shell=True)
6
  subprocess.run(f"tar -xf node-v17.0.1-linux-x64.tar.xz", shell=True)
7
  subprocess.run(f"wmv node-v17.0.1-linux-x64 node", shell=True)
 
2
 
3
  def env_set():
4
  subprocess.run(f"pip install PyPDF2", shell=True)
5
+ subprocess.run(f"pip install -q openai", shell=True)
6
  subprocess.run(f"wget https://nodejs.org/dist/v17.0.1/node-v17.0.1-linux-x64.tar.xz", shell=True)
7
  subprocess.run(f"tar -xf node-v17.0.1-linux-x64.tar.xz", shell=True)
8
  subprocess.run(f"wmv node-v17.0.1-linux-x64 node", shell=True)