How to control gnome-terminal from Python scrypt?How to send terminal command to a TTY terminalWhy do most GNOME developers prefer Python over Java for GTK+ programming?Why can't I import “pygtk” with Python 3.2 from PyDev?How to dynamically get name, version and other info from a Python app at runtimeHow install GTK+ 3 for PythonUbuntu Touch - how to create Unity .desktop launcher to make UT terminal to open and execute a command?Python NameError: global name 'resolution' is not definedhow do I create gnome-terminal from python code?Running Ubuntu Touch applications in command line for gdb debugging?Cron task stops performing when encounters unredirected stdout/stderrGnone-Wayland: Does launching a pkexec prompt from an X11 terminal (ex terminology in xwayland) result in a X11 pkexec prompt?
How can we have a quark condensate without a quark potential?
Is Manda another name for Saturn (Shani)?
Brexit - No Deal Rejection
Violin - Can double stops be played when the strings are not next to each other?
Why does a Star of David appear at a rally with Francisco Franco?
Why do passenger jet manufacturers design their planes with stall prevention systems?
If I can solve Sudoku, can I solve the Travelling Salesman Problem (TSP)? If so, how?
When to use a slotted vs. solid turner?
Simplify an interface for flexibly applying rules to periods of time
Could this Scherzo by Beethoven be considered to be a fugue?
PTIJ: Halachic Status of Breadboards on Pesach
How to get the n-th line after a grepped one?
Could the Saturn V actually have launched astronauts around Venus?
Are all passive ability checks floors for active ability checks?
PTIJ: Who should I vote for? (21st Knesset Edition)
Most cost effective thermostat setting: consistent temperature vs. lowest temperature possible
How to make healing in an exploration game interesting
Professor being mistaken for a grad student
What is the meaning of まっちろけ?
Instead of a Universal Basic Income program, why not implement a "Universal Basic Needs" program?
What are substitutions for coconut in curry?
How to explain that I do not want to visit a country due to personal safety concern?
Why is a white electrical wire connected to 2 black wires?
Python if-else code style for reduced code for rounding floats
How to control gnome-terminal from Python scrypt?
How to send terminal command to a TTY terminalWhy do most GNOME developers prefer Python over Java for GTK+ programming?Why can't I import “pygtk” with Python 3.2 from PyDev?How to dynamically get name, version and other info from a Python app at runtimeHow install GTK+ 3 for PythonUbuntu Touch - how to create Unity .desktop launcher to make UT terminal to open and execute a command?Python NameError: global name 'resolution' is not definedhow do I create gnome-terminal from python code?Running Ubuntu Touch applications in command line for gdb debugging?Cron task stops performing when encounters unredirected stdout/stderrGnone-Wayland: Does launching a pkexec prompt from an X11 terminal (ex terminology in xwayland) result in a X11 pkexec prompt?
I am developing an application in PyGtk, and would like to launch a gnome-terminal and output commands to it.
My user should then be able to modify the command, or maybe ignore using the up arrow ... etc.
I have been able to launch a terminal, but can't work out how to send commands.
This is how my application starts:
class App(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
process=subprocess.Popen(["gnome-terminal", "--class=App", "--name=app"], shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
response,error=process.communicate()
command-line application-development python gnome-terminal gtk
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I am developing an application in PyGtk, and would like to launch a gnome-terminal and output commands to it.
My user should then be able to modify the command, or maybe ignore using the up arrow ... etc.
I have been able to launch a terminal, but can't work out how to send commands.
This is how my application starts:
class App(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
process=subprocess.Popen(["gnome-terminal", "--class=App", "--name=app"], shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
response,error=process.communicate()
command-line application-development python gnome-terminal gtk
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
add a comment |
I am developing an application in PyGtk, and would like to launch a gnome-terminal and output commands to it.
My user should then be able to modify the command, or maybe ignore using the up arrow ... etc.
I have been able to launch a terminal, but can't work out how to send commands.
This is how my application starts:
class App(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
process=subprocess.Popen(["gnome-terminal", "--class=App", "--name=app"], shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
response,error=process.communicate()
command-line application-development python gnome-terminal gtk
I am developing an application in PyGtk, and would like to launch a gnome-terminal and output commands to it.
My user should then be able to modify the command, or maybe ignore using the up arrow ... etc.
I have been able to launch a terminal, but can't work out how to send commands.
This is how my application starts:
class App(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
process=subprocess.Popen(["gnome-terminal", "--class=App", "--name=app"], shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
response,error=process.communicate()
command-line application-development python gnome-terminal gtk
command-line application-development python gnome-terminal gtk
edited Jun 27 '13 at 21:56
Lucio
12.6k2485161
12.6k2485161
asked Jun 27 '13 at 21:26
Anthony ScaifeAnthony Scaife
13616
13616
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 16 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
add a comment |
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48
add a comment |
2 Answers
2
active
oldest
votes
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f313554%2fhow-to-control-gnome-terminal-from-python-scrypt%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
According to the python docs, you want to use
Popen.communicate(input=None)
http://docs.python.org/2/library/subprocess.html#popen-objects
I would recommend that you edit your command from python before sending it to another process. For example, display a window with the default command and allow the user to edit (or cancel) it before executing it. Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient.
If that doesn't work for you, you could also try this. (depending on what you are actually running from the terminal) Since you mentioned users could edit the command, it would be a good idea to validate the input before running.
command = ['ls','-l']
output = subprocess.check_output( command )
print( output )
edited Jun 28 '13 at 0:25
answered Jun 27 '13 at 22:37
DavidDavid
212
212
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
2
OP is already using the suggestion viaresponse,error=process.communicate()
where process is an instance ofPopen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.
– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
2
2
OP is already using the suggestion via
response,error=process.communicate()
where process is an instance of Popen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.– gertvdijk
Jun 27 '13 at 22:40
OP is already using the suggestion via
response,error=process.communicate()
where process is an instance of Popen
. "Also, "gnome-terminal" is probably overkill for this, "/bin/bash" should be sufficient." I think OP actually deliberately wants to show the terminal in his GUI app.– gertvdijk
Jun 27 '13 at 22:40
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
You are correct @gertvdijk, I want a terminal embedded into my application. I am currently using Vte.Terminal, which is good, but it does not behave just like gnome-terminal. For example the delete key produces ^[[3~, and the up arrow key does not show the previous command. I also got excited by what I found here: "gnome-terminal --help-gtk", and figured this would do the job.
– Anthony Scaife
Jun 30 '13 at 0:31
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
@user936401 If you did found the solution, please create a new answer.
– Lucio
Jul 11 '13 at 23:09
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
No solution found.
– Anthony Scaife
Dec 10 '14 at 10:16
add a comment |
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
add a comment |
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
add a comment |
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
I had the same problem.
Solved it with tmux, thanks to this answer (copied below).
In the terminal that should receive the command start tmux with an identifier:
tmux new-session -s MYSES
Send commands to it with:
tmux send-keys -t MYSES "ls -l"$'n'
edited Apr 13 '17 at 12:23
Community♦
1
1
answered Jun 5 '16 at 5:01
naroomnaroom
1012
1012
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f313554%2fhow-to-control-gnome-terminal-from-python-scrypt%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
related Stack Overflow question
– jfs
Nov 7 '15 at 22:48