You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then the debugger broke at line 409 of mnist.py with the following:
Exception has occurred: SystemExit
exception: no description
File "/Users/seank/Desktop/MNIST/mnist.py", line 409, in <module>
tf.app.run(main=main, argv=[sys.argv[0]] + unparsed)
The text was updated successfully, but these errors were encountered:
This exception is caused by the _sys.exit() in TensorFlow's build-in function "tensorflow.app.run". __sys.exit() will trigger an SystemExit exception to exit python, and your shell captured this exception. It will occur if you use anaconda or ipython as your python shell. It's not a real problem and won't influence on the program's result. You can just ignore it.
Should the documentation be updated not point to anaconda in the Prerequisite section when they say "Install Python 3.5 or greater."? If the failure is expected, it seems like a poor first user experience.
Repro Steps
F5
Expected
Successful execution
Actual
Then the debugger broke at line 409 of
mnist.py
with the following:The text was updated successfully, but these errors were encountered: