Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running python command line interpreter inside PyDev

In matlab, it is possible to execute a script (ie an m-file) and then manipulate the variables created by the script on the command line.

Is it possible to run a .py file on PyDev and consequently, manipulate its variables inside eclipse as is possible in the case of matlab?

like image 460
flamearchon Avatar asked Aug 15 '11 15:08

flamearchon


1 Answers

That's available through the PyDev interactive console. See: http://pydev.org/manual_adv_interactive_console.html

Another way would be executing some program in debug mode and inspecting variables in the console: http://pydev.org/manual_adv_debug_console.html

like image 101
Fabio Zadrozny Avatar answered Sep 27 '22 15:09

Fabio Zadrozny