gabboud commited on
Commit
13924cf
·
1 Parent(s): 6ea1a16

print global path

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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.")