0

I know that there is a previous link posted here IDLE warns against an old TCL version even though I've installed a newer version

essentially, i've installed python but it gave me a warning about an out of date activetcl. I download and install it but idle is not able to detect the new install

im wondering how i can change the path in idle after i've installed a newer version. Or am I doing something entirely wrong

Community
  • 1
  • 1

1 Answers1

0

To view the path include in your current PATH variable inside idle do

import sys
sys.path 

The above will give you the list of paths in the PATH variable , Look for the path of the tcl included, whether its a new or older version,if older version remove the older and include the new version

To add a Path do,

sys.path.append(your path)

To remove a path from the list

sys.path.remove(your path)
Ram
  • 1,115
  • 8
  • 20