Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,8 +16,11 @@ try:
|
|
16 |
from openbabel import openbabel
|
17 |
except:
|
18 |
print ("openbabel not found, Installing openbabel ")
|
19 |
-
os.system("wget 'https://repo.continuum.io/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh' && bash Miniconda3-4.5.4-Linux-x86_64.sh -bfp /usr/local")
|
20 |
-
os.system("conda install -c conda-forge openbabel -y")
|
|
|
|
|
|
|
21 |
from openbabel import openbabel
|
22 |
|
23 |
|
|
|
16 |
from openbabel import openbabel
|
17 |
except:
|
18 |
print ("openbabel not found, Installing openbabel ")
|
19 |
+
s2 = os.system("wget 'https://repo.continuum.io/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh' && bash Miniconda3-4.5.4-Linux-x86_64.sh -bfp /usr/local")
|
20 |
+
s1 = os.system("conda install -c conda-forge openbabel -y")
|
21 |
+
print(s2)
|
22 |
+
print(s1)
|
23 |
+
|
24 |
from openbabel import openbabel
|
25 |
|
26 |
|