I'm trying to run a python file using Notepad++'s NppExec plugin. My file attempts to import Tkinter using the line "from Tkinter import * ". With NppExec, I run the following script:
python "$(FULL_CURRENT_PATH)"
or sometimes
python -i "$(FULL_CURRENT_PATH)"
In either case, I get the error "ImportError: No module named Tkinter". I find this odd, because if I run my python file using any other method (IDLE, directly from command line, or even with Npp's built in Run function), I get no errors, and Tkinter imports correctly.
I'm running Windows 7, if it makes a difference.
Thanks in advance for your help! -Sam