Is it possible to open terminal from run box and use ' — ' to run a command to pen a file in some other...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
What i want to do is to start a terminal session with the python command line interpreter and and further run a python file using the interpreter the python file could located anywhere.
What i mean to say is I have a python file demo.py
in /home/one/two/
#demo.py
a=10
print("something")
so that when terminal opens i see the message something
followed by the console prompt.
something
>>>
My approach:
gnome-terminal --python -i ~/home/one/two/demo.py
this gives me following result
python: can't open file '~/Desktop/pydemo/demo.py': [Errno 2] No such file or directory
However when i run the same command from terminal window(not opened in the same directory as the demo.py
file ) it works properly.
Can someone please explain what is happening here and if possible suggest a way t0 achieve whatever i mentioned above.
command-line scripts python gnome-terminal
add a comment |
What i want to do is to start a terminal session with the python command line interpreter and and further run a python file using the interpreter the python file could located anywhere.
What i mean to say is I have a python file demo.py
in /home/one/two/
#demo.py
a=10
print("something")
so that when terminal opens i see the message something
followed by the console prompt.
something
>>>
My approach:
gnome-terminal --python -i ~/home/one/two/demo.py
this gives me following result
python: can't open file '~/Desktop/pydemo/demo.py': [Errno 2] No such file or directory
However when i run the same command from terminal window(not opened in the same directory as the demo.py
file ) it works properly.
Can someone please explain what is happening here and if possible suggest a way t0 achieve whatever i mentioned above.
command-line scripts python gnome-terminal
add a comment |
What i want to do is to start a terminal session with the python command line interpreter and and further run a python file using the interpreter the python file could located anywhere.
What i mean to say is I have a python file demo.py
in /home/one/two/
#demo.py
a=10
print("something")
so that when terminal opens i see the message something
followed by the console prompt.
something
>>>
My approach:
gnome-terminal --python -i ~/home/one/two/demo.py
this gives me following result
python: can't open file '~/Desktop/pydemo/demo.py': [Errno 2] No such file or directory
However when i run the same command from terminal window(not opened in the same directory as the demo.py
file ) it works properly.
Can someone please explain what is happening here and if possible suggest a way t0 achieve whatever i mentioned above.
command-line scripts python gnome-terminal
What i want to do is to start a terminal session with the python command line interpreter and and further run a python file using the interpreter the python file could located anywhere.
What i mean to say is I have a python file demo.py
in /home/one/two/
#demo.py
a=10
print("something")
so that when terminal opens i see the message something
followed by the console prompt.
something
>>>
My approach:
gnome-terminal --python -i ~/home/one/two/demo.py
this gives me following result
python: can't open file '~/Desktop/pydemo/demo.py': [Errno 2] No such file or directory
However when i run the same command from terminal window(not opened in the same directory as the demo.py
file ) it works properly.
Can someone please explain what is happening here and if possible suggest a way t0 achieve whatever i mentioned above.
command-line scripts python gnome-terminal
command-line scripts python gnome-terminal
asked Feb 10 at 5:53
user8157045user8157045
33
33
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You did not say HOW you start that command. If run from command line,
gnome-terminal -- python -i ~/demo.py
will work, because the shell will change ~ into your home before the arguments are passed to gnome-terminal. But here in your case, the error message states ~/... : not found
: There was no shell to interpret the ~, so it was left as is, and effectively, there is no directory whose name is the sole character ~ in the directory the command happent to be started in.
Either explicitely use a shell to interpret the ~ :
gnome-terminal -- sh -c 'exec python -i ~/demo.py'
or do it yourself and proivde the full path name :
gnome-terminal -- python -i /home/me/demo.py
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%2f1117063%2fis-it-possible-to-open-terminal-from-run-box-and-use-to-run-a-command-to%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You did not say HOW you start that command. If run from command line,
gnome-terminal -- python -i ~/demo.py
will work, because the shell will change ~ into your home before the arguments are passed to gnome-terminal. But here in your case, the error message states ~/... : not found
: There was no shell to interpret the ~, so it was left as is, and effectively, there is no directory whose name is the sole character ~ in the directory the command happent to be started in.
Either explicitely use a shell to interpret the ~ :
gnome-terminal -- sh -c 'exec python -i ~/demo.py'
or do it yourself and proivde the full path name :
gnome-terminal -- python -i /home/me/demo.py
add a comment |
You did not say HOW you start that command. If run from command line,
gnome-terminal -- python -i ~/demo.py
will work, because the shell will change ~ into your home before the arguments are passed to gnome-terminal. But here in your case, the error message states ~/... : not found
: There was no shell to interpret the ~, so it was left as is, and effectively, there is no directory whose name is the sole character ~ in the directory the command happent to be started in.
Either explicitely use a shell to interpret the ~ :
gnome-terminal -- sh -c 'exec python -i ~/demo.py'
or do it yourself and proivde the full path name :
gnome-terminal -- python -i /home/me/demo.py
add a comment |
You did not say HOW you start that command. If run from command line,
gnome-terminal -- python -i ~/demo.py
will work, because the shell will change ~ into your home before the arguments are passed to gnome-terminal. But here in your case, the error message states ~/... : not found
: There was no shell to interpret the ~, so it was left as is, and effectively, there is no directory whose name is the sole character ~ in the directory the command happent to be started in.
Either explicitely use a shell to interpret the ~ :
gnome-terminal -- sh -c 'exec python -i ~/demo.py'
or do it yourself and proivde the full path name :
gnome-terminal -- python -i /home/me/demo.py
You did not say HOW you start that command. If run from command line,
gnome-terminal -- python -i ~/demo.py
will work, because the shell will change ~ into your home before the arguments are passed to gnome-terminal. But here in your case, the error message states ~/... : not found
: There was no shell to interpret the ~, so it was left as is, and effectively, there is no directory whose name is the sole character ~ in the directory the command happent to be started in.
Either explicitely use a shell to interpret the ~ :
gnome-terminal -- sh -c 'exec python -i ~/demo.py'
or do it yourself and proivde the full path name :
gnome-terminal -- python -i /home/me/demo.py
answered Feb 10 at 7:39
exoreexore
68158
68158
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%2f1117063%2fis-it-possible-to-open-terminal-from-run-box-and-use-to-run-a-command-to%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