I'm using Fedora 21. Installed the python3-tkinter package using yum install python3-tkinter
. The package gets stored in the /usr/lib64/python3.4
directory. Is there a way to use pip to install tkinter?
Have a virtualenv setup with python3. When I try to run my program within that virtualenv I get:
ImportError: No module named 'tkinter'.
Does it make sense to copy the package directories from /usr/lib64/python3.4
to the site_packages
folder associated with the virtualenv?