Reputation: 1953
I am trying to install python-tk on Ubuntu 14.10 with python 2.7. but it throws following dependency error. please help me to resolve this. I tried many ways but couldn't solve it.
python-tk : Depends: blt (>= 2.4z-4.1) but it is not going to be installed
Depends: tcl8.5 (>= 8.5.0) but it is not going to be installed
Depends: tk8.5 (>= 8.5.0) but it is not going to be installed
Upvotes: 2
Views: 2585
Reputation: 26698
First update the Package Index.
sudo apt-get update
Build dependances before installing python-tk
.
sudo apt-get build-dep python-tk
Then install python-tk
package:
sudo apt-get install python-tk
Upvotes: 2