Hyeonseo commited on
Commit
b5b5601
·
1 Parent(s): e1cee17

Update env_set.py

Browse files
Files changed (1) hide show
  1. env_set.py +1 -1
env_set.py CHANGED
@@ -5,7 +5,7 @@ def env_set():
5
  subprocess.run(f"pip install -q openai", shell=True)
6
  subprocess.run(f"wget https://nodejs.org/dist/v17.0.1/node-v17.0.1-linux-x64.tar.xz", shell=True)
7
  subprocess.run(f"tar -xf node-v17.0.1-linux-x64.tar.xz", shell=True)
8
- subprocess.run(f"wmv 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)
 
5
  subprocess.run(f"pip install -q openai", shell=True)
6
  subprocess.run(f"wget https://nodejs.org/dist/v17.0.1/node-v17.0.1-linux-x64.tar.xz", shell=True)
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)