I need tkinter to work in my python virtualenv. Apparently, it is not a python package - can only be installed as a yum or apt-get install - and I don't root permissions on my machine.
Tried recommendation in #1 and I get:
easy_install --prefix=~/.local3/ python-tk
Creating /home/<userid>/.local3/lib/python3.4/site-packages/site.py
Searching for python-tk
Reading https://pypi.python.org/simple/python-tk/
Couldn't find index page for 'python-tk' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
No local packages or working download links found for python-tk
error: Could not find suitable distribution for Requirement.parse('python-tk')
URL #2 seems to have come close but does not quite close the deal:
cd ~/tcl8.5.11/unix
./configure --prefix=/home/cnel711 --exec-prefix=/home/cnel711
make
make install
cd ~/tk8.5.11/unix
./configure --prefix=/home/cnel711 --exec-prefix=/home/cnel711 --with-tcl=/home/cnel711/tcl8.5.11/unix
make
make install
Above works but how to corral it into my virtualenv setup is not clear. Is it referring to building python from sources and then latching onto that setup.py?
Has someone been able to find a proper solution?