Hyeonseo commited on
Commit
e158722
·
1 Parent(s): 19da7fa

Update env_set.py

Browse files
Files changed (1) hide show
  1. env_set.py +0 -4
env_set.py CHANGED
@@ -1,12 +1,8 @@
1
  import subprocess
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"apt-get install -f", shell=True)
7
  subprocess.run(f"apt-get install -y fonts-nanum", shell=True)
8
  subprocess.run(f"fc-cache -fv", shell=True)
9
  subprocess.run(f"rm ~/.cache/matplotlib -rf", shell=True)
10
- subprocess.run(f"docker pull marpteam/marp-cli", shell=True)
11
- # subprocess.run(f"npm install -g @marp-team/marp-cli", shell=True)
12
 
 
1
  import subprocess
2
 
3
  def env_set():
 
 
4
  subprocess.run(f"apt-get install -f", shell=True)
5
  subprocess.run(f"apt-get install -y fonts-nanum", shell=True)
6
  subprocess.run(f"fc-cache -fv", shell=True)
7
  subprocess.run(f"rm ~/.cache/matplotlib -rf", shell=True)
 
 
8