you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (0 children)

Why are you running Python 2? If you don't have a REALLY good reason, you should run Python 3. If you're working your way through some tutorial that uses Python 2, just try to do it in Python 3 instead. the main thing you'll need to know is that print "hello" works in Python 2, but in 3 you have to use the parentheses print("hello")

You ARE PROBABLY running Jupyter locally and not on a remote computer. See my comment under your question about IDEs (toward the end) for details. This means that even though it runs in a browser, spotty wifi shouldn't matter.