jiseki commited on
Commit
1d148ea
·
verified ·
1 Parent(s): 70d250f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ # Node.jsのインストール
3
+ os.system("apt-get update && apt-get install -y nodejs npm")
4
+
5
+ # 次に必要なコマンドを実行
6
+ os.system("""
7
+ git clone https://github.com/izum00/primitive-cloud-server-huggingface.git && \
8
+ cd primitive-cloud-server-huggingface && \
9
+ npm install && \
10
+ npm start
11
+ """)