When trying to open a interactive console on pydev I get an error:
Error initializing console.
Unexpected error connecting to console.
Fai
As documented here, the solution is to update IPython
workon project
pip install -U ipython
I was having the same problem and fixed it with this.
(My solution is inspired by @Sala's answer. And I want to add more reasoning here.)
With @Sala's solution, one
working configuration is like below. It essentially prevents eclipse from using the system
(i.e. native
) proxy.
And you should notice that in the Proxy bypass
area, the Provider for localhost
and 127.0.0.1
is Manual
. Just in consistent with the Proxy entries
area.
You can do it in IE -> Internet Options -> Connection -> LAN Settings -> Advanced:
Then, you don't nee to restart your eclipse, and you will see the Provider for the bypassed localhost
and 127.0.0.1
has changed to Native
now as shown below:
Now the pydev console should be able to start.
Try following:
In Eclipse under Window/Preferences/General/Network Connections:
--> set Active Provider: Manual
--> check in the box "Proxy bypass" if localhost and 127.0.0.1 are checked
Click Apply and try to open again.
That worked for me