Install Tkinter in virtualenv on Linux without Sudo access

Viewed 10071

I am using a virtualenv on a Linux machine. I don' have sudo access so I can use pip only.

I tried:

 pip install python-tk

But this resulted in this error message

Collecting python-tk
  Could not find a version that satisfies the requirement python-tk (from versions: )
No matching distribution found for python-tk

How can I install Tkinter in virtualenv on Linux?

1 Answers
Related