0

I am just starting to use tensor flow while downloading ML fileby using python API and I am getting the below error

"C:\Users\IVISSW\Desktop\snpe-1.12.0> python ./models/inception_v3/scripts/setup_inceptionv3.py -a ./temp-assets-cache -d File "./models/inception_v3/scripts/setup_inceptionv3.py", line 159 except Exception, err: ^ SyntaxError: invalid syntax"

Is there any solution for that, I tried lots of stuff but could not find any suitable solution.

I am following this tutorial

Quanlong
  • 24,028
  • 16
  • 69
  • 79
ashish
  • 307
  • 4
  • 15

1 Answers1

0

SNPE requires Python 2, make sure you are not running Python 3 by default.

Check with

python --version
Quanlong
  • 24,028
  • 16
  • 69
  • 79