Install Python 3.6 and say, "Well, let's run it in" Hello world "." The following warning occurred when IDLE was started for the first time, so talk about how to resolve it.
[Warning content] WARNING: The version of Tcl/Tk (8.5.9) in use may be unstable. Visit http://www.python.org/download/mac/tcltk/ for current information.
If you go to the URL in the warning text, there is a description of the module to be installed depending on the OS version as shown below.
Since the OS version is Mac OS Sierra (10.12), install "ActiveTcl 8.5.18.0"
Clicking the link will take you to the ActiveState page, so install "ActiveTcl 8.5.18.0"
https://www.activestate.com/activetcl/downloads
Download and launch the installer
It may be an option in particular, so press "Continue" to complete the installation
Try launching Python's IDLE I still get a warning ...
If you look it up, the version of Tcl / Tk used by Python is It seems to be associated during Python installation and cannot be changed later.
Reinstall Python and try launching Python's IDLE The warning text is gone!
When I check the information on the net, it seems that even if this warning appears, I can ignore it and use Python normally. It was unpleasant to see a warning suddenly when I started it for the first time, so I resolved it. I hope it helps those who have the same symptoms.
Recommended Posts