Feanor
Feanor

Reputation: 3690

How to install python-tk package without sudo?

I have an issue to install python-tk package for my app to user's computer. User does not have sudo rights, but has python installed by default. I can't even find downloadable python-tk module to simply run "python setup.py install" . Can someone help with this? Are there any other choices?

Upvotes: 1

Views: 1020

Answers (1)

Fred Foo
Fred Foo

Reputation: 363587

Unfortunately, python-tk is actually a separately-packaged version of Tkinter, built straight from the Python source code; it's not a separately available source package.

What you can do is build and install your own version of Python in your homedir.

Upvotes: 2

Related Questions