0

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?

Zanna
  • 69,223
  • 56
  • 216
  • 327
  • use `python3` to invoke it – jarleih Apr 11 '17 at 11:01
  • 3
    Possible duplicate of [Configuring tkinter for python3.4.3 Problem](https://askubuntu.com/questions/896825/configuring-tkinter-for-python3-4-3-problem) and [How shall I install and invoke IDLE for Python3?](https://askubuntu.com/questions/961991/how-shall-i-install-and-invoke-idle-for-python3) – karel Jan 14 '18 at 13:01

1 Answers1

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
  • 69,223
  • 56
  • 216
  • 327