Spaces:
Running
on
Zero
Running
on
Zero
Maybe it needs a blank import of spaces at the top?
Browse files- app.py +2 -0
- requirements.txt +1 -1
app.py
CHANGED
@@ -2,6 +2,8 @@ import os
|
|
2 |
import subprocess
|
3 |
import sys
|
4 |
|
|
|
|
|
5 |
# Install latest git main code
|
6 |
bool(os.getenv("SPACES_ZERO_GPU")) and subprocess.run((
|
7 |
sys.executable, "-m", "pip", "install", "--upgrade",
|
|
|
2 |
import subprocess
|
3 |
import sys
|
4 |
|
5 |
+
import spaces
|
6 |
+
|
7 |
# Install latest git main code
|
8 |
bool(os.getenv("SPACES_ZERO_GPU")) and subprocess.run((
|
9 |
sys.executable, "-m", "pip", "install", "--upgrade",
|
requirements.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Todo: Swap to pypi when v0.9 is released. Rebuild trigger count:
|
2 |
broken-source @ git+https://github.com/BrokenSource/BrokenSource@main
|
3 |
shaderflow @ git+https://github.com/BrokenSource/ShaderFlow@main
|
4 |
depthflow @ git+https://github.com/BrokenSource/DepthFlow@main
|
|
|
1 |
+
# Todo: Swap to pypi when v0.9 is released. Rebuild trigger count: 5
|
2 |
broken-source @ git+https://github.com/BrokenSource/BrokenSource@main
|
3 |
shaderflow @ git+https://github.com/BrokenSource/ShaderFlow@main
|
4 |
depthflow @ git+https://github.com/BrokenSource/DepthFlow@main
|