Spaces:
Sleeping
Sleeping
Commit
·
dce517a
1
Parent(s):
2e3c4e2
fix pixi path
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ def check_and_install_pixi():
|
|
12 |
subprocess.check_call("curl -fsSL https://pixi.sh/install.sh | bash", shell=True)
|
13 |
|
14 |
def pixi_run():
|
15 |
-
command = "
|
16 |
subprocess.check_call(command, shell=True)
|
17 |
|
18 |
if __name__ == "__main__":
|
|
|
12 |
subprocess.check_call("curl -fsSL https://pixi.sh/install.sh | bash", shell=True)
|
13 |
|
14 |
def pixi_run():
|
15 |
+
command = f"{PIXI_PATH} run app"
|
16 |
subprocess.check_call(command, shell=True)
|
17 |
|
18 |
if __name__ == "__main__":
|