I installed python 3.6.1. But then realized I don't have IDLE and can only access python via terminal by typing python
. And the python version in the terminal is 2.7.12 not 3.6.1. I know Ubuntu comes with Python 2.7.12. But how come I can't use 3.6.1?
Asked
Active
Viewed 818 times
1 Answers
2
To use Python3, type python3
in your terminal.
To use tkinter, you need to install it by typing
sudo apt-get install python3-tk

Zanna
- 70,465
python3
to invoke it – jarleih Apr 11 '17 at 11:01