Spaces:
Running on Zero
Running on Zero
print global path
Browse files
app.py
CHANGED
|
@@ -10,6 +10,7 @@ import spaces
|
|
| 10 |
# In total, ~6GB (3GB for RFD3, 3GB for RF3, <100MB for MPNN); may take a few minutes depending on your connection speed
|
| 11 |
|
| 12 |
cmd = "foundry install rfd3 ligandmpnn rf3"
|
|
|
|
| 13 |
result = subprocess.run(cmd, shell=True, capture_output=True, text=True)
|
| 14 |
if result.returncode == 0:
|
| 15 |
print("Models installed successfully.")
|
|
|
|
| 10 |
# In total, ~6GB (3GB for RFD3, 3GB for RF3, <100MB for MPNN); may take a few minutes depending on your connection speed
|
| 11 |
|
| 12 |
cmd = "foundry install rfd3 ligandmpnn rf3"
|
| 13 |
+
print("Global PATH:", os.environ.get("PATH"))
|
| 14 |
result = subprocess.run(cmd, shell=True, capture_output=True, text=True)
|
| 15 |
if result.returncode == 0:
|
| 16 |
print("Models installed successfully.")
|