Hyeonseo commited on
Commit
dcc29e4
β€’
1 Parent(s): b5b5601

Update env_set.py

Browse files
Files changed (1) hide show
  1. env_set.py +5 -4
env_set.py CHANGED
@@ -7,8 +7,9 @@ def env_set():
7
  subprocess.run(f"tar -xf node-v17.0.1-linux-x64.tar.xz", shell=True)
8
  subprocess.run(f"mv node-v17.0.1-linux-x64 node", shell=True)
9
  subprocess.run(f"export PATH=$PWD/node/bin:$PATH", shell=True)
10
- subprocess.run(f"apt-get install -f", shell=True)
11
- subprocess.run(f"apt-get install -y fonts-nanum", shell=True)
12
- subprocess.run(f"fc-cache -fv", shell=True)
13
- subprocess.run(f"rm ~/.cache/matplotlib -rf", shell=True)
 
14
 
 
7
  subprocess.run(f"tar -xf node-v17.0.1-linux-x64.tar.xz", shell=True)
8
  subprocess.run(f"mv node-v17.0.1-linux-x64 node", shell=True)
9
  subprocess.run(f"export PATH=$PWD/node/bin:$PATH", shell=True)
10
+ subprocess.run(f"npm install -g npm", shell=True)
11
+ # subprocess.run(f"apt-get install -f", shell=True)
12
+ # subprocess.run(f"apt-get install -y fonts-nanum", shell=True)
13
+ # subprocess.run(f"fc-cache -fv", shell=True)
14
+ # subprocess.run(f"rm ~/.cache/matplotlib -rf", shell=True)
15