mswhirl / autoflashgui

Utility to flash firmware to modems and run setup commands after the flash has completed
GNU General Public License v3.0
70 stars 17 forks source link

[SOLVED] Cannot install #21

Closed kotatsuman closed 4 years ago

kotatsuman commented 5 years ago

I am running Linux Mint 19.1, installed python3.7, installed robobrowser using pip, but when I run python autoflashgui.py this is what happens:

Traceback (most recent call last): File "autoflashgui.py", line 13, in <module> import tkinter as tk ImportError: No module named tkinter

That's where I get stuck. I also installed python-tk and python3-tk, but it did not help. What should I do? I had a look in a few forums, but got no clue. Thank you

kotatsuman commented 5 years ago

I solved by myself, accidentally, trying this:

pip install --update pip

Then pip stopped to work, so I had to use pip3 instead.

pip3 install setuptools pip3 install wheel pip3 install robobrowser==0.5.3

"Well", I thought, "if I'm using pip3, I should use python3, then."

python3 autoflashgui.py

Oh, wonder! Everything is working like a charm!

kevdagoat commented 5 years ago

Simple mistake :)

Next time for your info, you shouldn’t need to specify the robobrowser version

On 29 Apr 2019, at 10:29 pm, kotatsuman notifications@github.com wrote:

I solved by myself, accidentally, trying this:

pip install --update pip

Then pip stopped to work, so I had to use pip3 instead.

pip3 install setuptools pip3 install wheel pip3 install robobrowser==0.5.3

"Well", I thought, "if I'm using pip3, I should use python3, then."

python3 autoflashgui.py

Oh, wonder! Everything is working like a charm!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

mswhirl commented 4 years ago

Thanks for providing feedback on how you solved the problem so that others may benefit! Regards, Mark.