0

As there were no satisfying answers in the following links

Set default directory of Pydev interactive console?

Pydev - startup

pydev console path for the active editor

I'm asking whether there is a way to have IPython as integrated console, opening up at start up and being the console, where the modules are run by default, just like in RStudio.

Community
  • 1
  • 1

1 Answers1

0

Well, there's no feature to open it at startup by default, but you can do Ctrl+Alt+Enter to first open it and after it's opened, do Ctrl+Alt+Enter again to execute the current file in that console...

Alternatively, you may also use F2 to send the current line to the console (and jump to the next line, so, it's easy to send a block with multiple F2 keystrokes -- and it should also fix for the indentation required).

See: http://www.pydev.org/manual_adv_interactive_console.html for more details.

chicks
  • 2,393
  • 3
  • 24
  • 40
Fabio Zadrozny
  • 24,814
  • 4
  • 66
  • 78