PyDev Jython Interactive Console on Eclipse fails to be created

前端 未结 2 407
忘了有多久
忘了有多久 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:43

    I think this was an issue on PyDev. Can you please check the latest nightly build (see http://pydev.org/download.html for details on how to get it) and see if it works for you?

    0 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题