
To install Tkinter, we need Python pre-installed. Tkinter actually comes along when we install Python. While installing Python, we need to check the td/tk and IDLE checkbox. This will install the tkinter and we need not install it separately.
However, if we missed installing Tkinter while installing Python, we can do it later using the pip command.
Step 1 − Make sure Python and pip is preinstalled on your systemType the following commands in command propmt to check is python and pip is installed on your system.
To check Pythonpython --versionIf python is successfully installed, the version of python installed on your system will be displayed.
To check pippip -VThe version of pip will be displayed, if it is successfully installed on your system.
Step 2 − Install TkinterTkinter can be installed using pip. The following command is run in the command prompt to install Tkinter.
pip install tkThis command will start downloading and installing packages related to the Tkinter library. Once done, the message of successful installation will be displayed.
No comments:
Post a Comment