File size: 299 Bytes
b541a57 e8ad632 859618b e8ad632 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
# Node.jsのインストール
os.system("apt-get update && apt-get install -y nodejs npm")
# 次に必要なコマンドを実行
os.system("""
git clone https://github.com/izum00/primitive-cloud-server-huggingface.git && \
cd primitive-cloud-server && \
npm install && \
npm start
""")
|