hitz02 commited on
Commit
f469d56
·
1 Parent(s): 99e8451

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -20,8 +20,8 @@ tf.get_logger().setLevel('ERROR')
20
  try:
21
  print(sys.executable)
22
  subprocess.check_call(["/home/user/.local/lib/python3.8", "-m", "pip", "install", 'torch-scatter','-f', 'https://data.pyg.org/whl/torch-1.10.0+cu102.html'])
23
- except:
24
- print('Error..')
25
 
26
  #install('torch-scatter -f https://data.pyg.org/whl/torch-1.10.0+cu102.html')
27
 
 
20
  try:
21
  print(sys.executable)
22
  subprocess.check_call(["/home/user/.local/lib/python3.8", "-m", "pip", "install", 'torch-scatter','-f', 'https://data.pyg.org/whl/torch-1.10.0+cu102.html'])
23
+ except Exception as e:
24
+ print('Error..', str(e))
25
 
26
  #install('torch-scatter -f https://data.pyg.org/whl/torch-1.10.0+cu102.html')
27