To be able to use idle with my virtualenv python, I created an idle script
#!/myvirtualenv/python from idlelib.PyShell import main if __name__ == '__main__': main() in the bin/ of my virtualenv but it complains about not being able to find Tkinter.
** IDLE can't import Tkinter. Your Python may not be configured for Tk. ** I checked and Tkinter can be imported in the regular python2.7.1 but I can't import Tkinter from my virtualenv python. How can I make Tkinter available to my virtualenv python ( I have to use no site-packages with the virtualenv for an other reason) Thanks