PyDev Jython Interactive Console on Eclipse fails to be created

前端 未结 2 409
忘了有多久
忘了有多久 2021-01-12 23:15

Why might my Jython Interactive Console fail to be created when called in Eclipse?

Following the \'Using Jython in an IDE\' instructions in the Jython manual (http:/

2条回答
  •  暖寄归人
    2021-01-12 23:54

    This error occured due to badly configured proxy settings, specifically the proxy exceptions did not include 'localhost' and '127.0.0.1'. This resulted in requests from Eclipse to itself through localhost being diverted through the proxy, which neither the proxy nor Eclipse were happy with.

    The solution (in Windows XP) was to open Internet Options -> Connections (tab) -> LAN Settings -> Advanced, and then add localhost;127.0.0.1; to the beginning of the Exceptions list.

提交回复
热议问题