File size: 446 Bytes
0259f08
 
 
 
5a3410e
bfa0f0c
 
 
0259f08
62f1401
0259f08
1
2
3
4
5
6
7
8
9
10
11
12
import subprocess

def env_set():
    subprocess.run(f"pip install PyPDF2", shell=True)
    subprocess.run(f"pip install -q openai", 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)
    subprocess.run(f"npm install -g @marp-team/marp-cli", shell=True)