Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,6 @@ def current_time():
|
|
9 |
return current
|
10 |
|
11 |
print(f"[{current_time()}] 开始部署空间...")
|
12 |
-
|
13 |
"""
|
14 |
print(f"[{current_time()}] 日志:安装 - 必要包")
|
15 |
os.system("pip install -r ./requirements.txt")
|
@@ -46,6 +45,8 @@ print(f"[{current_time()}] 日志:文件 - 移动 mt3 到当前目录并重命
|
|
46 |
os.system("mv mt3 mt3_tmp; mv mt3_tmp/* .; rm -r mt3_tmp")
|
47 |
print(f"[{current_time()}] 日志:Python - 使用 pip 从 storage.googleapis.com 安装 jax[cuda11_local] nest-asyncio pyfluidsynth")
|
48 |
os.system("python3 -m pip install jax[cuda11_local] nest-asyncio pyfluidsynth==1.3.0 -e . -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html")
|
|
|
|
|
49 |
print(f"[{current_time()}] 日志:Python - 使用 pip 安装 当前目录内的 Python 包")
|
50 |
os.system("python3 -m pip install -e .")
|
51 |
print(f"[{current_time()}] 日志:安装 - TensorFlow CPU")
|
|
|
9 |
return current
|
10 |
|
11 |
print(f"[{current_time()}] 开始部署空间...")
|
|
|
12 |
"""
|
13 |
print(f"[{current_time()}] 日志:安装 - 必要包")
|
14 |
os.system("pip install -r ./requirements.txt")
|
|
|
45 |
os.system("mv mt3 mt3_tmp; mv mt3_tmp/* .; rm -r mt3_tmp")
|
46 |
print(f"[{current_time()}] 日志:Python - 使用 pip 从 storage.googleapis.com 安装 jax[cuda11_local] nest-asyncio pyfluidsynth")
|
47 |
os.system("python3 -m pip install jax[cuda11_local] nest-asyncio pyfluidsynth==1.3.0 -e . -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html")
|
48 |
+
print(f"[{current_time()}] 日志:安装 - 更新 jaxlib")
|
49 |
+
os.system("pip install --upgrade jaxlib==0.4.27")
|
50 |
print(f"[{current_time()}] 日志:Python - 使用 pip 安装 当前目录内的 Python 包")
|
51 |
os.system("python3 -m pip install -e .")
|
52 |
print(f"[{current_time()}] 日志:安装 - TensorFlow CPU")
|