Hyeonseo's picture
Update env_set.py
a89f4ff
raw
history blame
377 Bytes
import subprocess
def env_set():
subprocess.run(f"pip install PyPDF2", shell=True)
subprocess.run(f"apt-get install pandoc", shell=True)
subprocess.run(f"apt-get install -f", shell=True)
subprocess.run(f"apt-get install -y fonts-nanum", shell=True)
subprocess.run(f"fc-cache -fv", shell=True)
subprocess.run(f"rm ~/.cache/matplotlib -rf", shell=True)