views:

401

answers:

1

If I have no connection to internet, does that mean I can't start IDLE (which comes with python 3.0)?

+5  A: 

IDLE displays a warning message about firewall programs because it connects to the interpreter over the loopback interface, but that interface is always "connected" and doesn't require you to be on the Internet.

If IDLE isn't working for you with Python 3.0, you might consult Python issue3628.

Justin Voss