you don't "start" perl or python, you'd just run them as an interpreter to an existing script, either explicitly via a command line: "perl blahblahblah.pl" or via a shebang in a file already marked as executable: "#!/usr/bin/perl". They are scripting lanagueg enterpreters, and as such don't work in a terminal OR gui... they are beyond that. if the perl script says show a window, it can show a window etc... if you wish to write for either lanaguage, any tet editor is suitable.
From the way you write your question, i'd expect you'd want to leave them alone for now.
|