In ubuntu IDE doest load tkinter library for python3 or python2
Hello everyone and thank you for your help in advance.
I am trying to use tkinter library.
When I open terminal type python3 and use
import tkinter
tkinter._test()
It works.
Also when I type python and use
import Tkinter
Tkinter.TK()
It also works.
My problem is when I install on my ubuntu 18.04 LTS
IDE like for eg. Eric Python or VISUAL STUDIO etc.
Under python2 or python3 I get same error and can not load tkinter
ModuleNotFoundError: No module named 'Tkinter'
When I load my simple code I get this error:
Exception has occurred: ModuleNotFoundError
No module named 'Tkinter'
File "/home/user234/Desktop/Program/start.py", line 1, in
import Tkinter
File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/usr/lib/python3.6/runpy.py", line 96, in _run_module_code
mod_name, mod_spec, pkg_name, script_name)
File "/usr/lib/python3.6/runpy.py", line 263, in run_path
pkg_name=pkg_name, script_name=fname)
This is the code I use
import Tkinter
canvas = Tkinter.Canvas()
canvas.pack()
canvas.create_line(10, 100, 200, 100, 10, 200)
Any suggestions where could be problem? I could not google answer for this question.
software-installation python python3 ide
add a comment |
Hello everyone and thank you for your help in advance.
I am trying to use tkinter library.
When I open terminal type python3 and use
import tkinter
tkinter._test()
It works.
Also when I type python and use
import Tkinter
Tkinter.TK()
It also works.
My problem is when I install on my ubuntu 18.04 LTS
IDE like for eg. Eric Python or VISUAL STUDIO etc.
Under python2 or python3 I get same error and can not load tkinter
ModuleNotFoundError: No module named 'Tkinter'
When I load my simple code I get this error:
Exception has occurred: ModuleNotFoundError
No module named 'Tkinter'
File "/home/user234/Desktop/Program/start.py", line 1, in
import Tkinter
File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/usr/lib/python3.6/runpy.py", line 96, in _run_module_code
mod_name, mod_spec, pkg_name, script_name)
File "/usr/lib/python3.6/runpy.py", line 263, in run_path
pkg_name=pkg_name, script_name=fname)
This is the code I use
import Tkinter
canvas = Tkinter.Canvas()
canvas.pack()
canvas.create_line(10, 100, 200, 100, 10, 200)
Any suggestions where could be problem? I could not google answer for this question.
software-installation python python3 ide
add a comment |
Hello everyone and thank you for your help in advance.
I am trying to use tkinter library.
When I open terminal type python3 and use
import tkinter
tkinter._test()
It works.
Also when I type python and use
import Tkinter
Tkinter.TK()
It also works.
My problem is when I install on my ubuntu 18.04 LTS
IDE like for eg. Eric Python or VISUAL STUDIO etc.
Under python2 or python3 I get same error and can not load tkinter
ModuleNotFoundError: No module named 'Tkinter'
When I load my simple code I get this error:
Exception has occurred: ModuleNotFoundError
No module named 'Tkinter'
File "/home/user234/Desktop/Program/start.py", line 1, in
import Tkinter
File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/usr/lib/python3.6/runpy.py", line 96, in _run_module_code
mod_name, mod_spec, pkg_name, script_name)
File "/usr/lib/python3.6/runpy.py", line 263, in run_path
pkg_name=pkg_name, script_name=fname)
This is the code I use
import Tkinter
canvas = Tkinter.Canvas()
canvas.pack()
canvas.create_line(10, 100, 200, 100, 10, 200)
Any suggestions where could be problem? I could not google answer for this question.
software-installation python python3 ide
Hello everyone and thank you for your help in advance.
I am trying to use tkinter library.
When I open terminal type python3 and use
import tkinter
tkinter._test()
It works.
Also when I type python and use
import Tkinter
Tkinter.TK()
It also works.
My problem is when I install on my ubuntu 18.04 LTS
IDE like for eg. Eric Python or VISUAL STUDIO etc.
Under python2 or python3 I get same error and can not load tkinter
ModuleNotFoundError: No module named 'Tkinter'
When I load my simple code I get this error:
Exception has occurred: ModuleNotFoundError
No module named 'Tkinter'
File "/home/user234/Desktop/Program/start.py", line 1, in
import Tkinter
File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/usr/lib/python3.6/runpy.py", line 96, in _run_module_code
mod_name, mod_spec, pkg_name, script_name)
File "/usr/lib/python3.6/runpy.py", line 263, in run_path
pkg_name=pkg_name, script_name=fname)
This is the code I use
import Tkinter
canvas = Tkinter.Canvas()
canvas.pack()
canvas.create_line(10, 100, 200, 100, 10, 200)
Any suggestions where could be problem? I could not google answer for this question.
software-installation python python3 ide
software-installation python python3 ide
edited Feb 1 at 21:03
Boris Šípoš
asked Feb 1 at 19:32
Boris ŠípošBoris Šípoš
12
12
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I found solution.
When using IDE you need to add this to your code to use tkinter library:
import tkinter as tk
root = tk.Tk()
root.mainloop()
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%2f1114819%2fin-ubuntu-ide-doest-load-tkinter-library-for-python3-or-python2%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
I found solution.
When using IDE you need to add this to your code to use tkinter library:
import tkinter as tk
root = tk.Tk()
root.mainloop()
add a comment |
I found solution.
When using IDE you need to add this to your code to use tkinter library:
import tkinter as tk
root = tk.Tk()
root.mainloop()
add a comment |
I found solution.
When using IDE you need to add this to your code to use tkinter library:
import tkinter as tk
root = tk.Tk()
root.mainloop()
I found solution.
When using IDE you need to add this to your code to use tkinter library:
import tkinter as tk
root = tk.Tk()
root.mainloop()
answered Feb 2 at 14:59
Boris ŠípošBoris Šípoš
12
12
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%2f1114819%2fin-ubuntu-ide-doest-load-tkinter-library-for-python3-or-python2%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