Hyeonseo commited on
Commit
7c53a89
·
1 Parent(s): fc79677

Update env_set.py

Browse files
Files changed (1) hide show
  1. env_set.py +1 -0
env_set.py CHANGED
@@ -1,6 +1,7 @@
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)
 
1
  import subprocess
2
 
3
  def env_set():
4
+ subprocess.run(f"apt-get install pandoc", shell=True)
5
  subprocess.run(f"apt-get install -f", shell=True)
6
  subprocess.run(f"apt-get install -y fonts-nanum", shell=True)
7
  subprocess.run(f"fc-cache -fv", shell=True)