Tor browser inop on 22.04 new clean install

Can't get tor to load after installation 22.04...tried tor launcher settings and this is what I got

I know enough to be dangerous, mostly to my own system...but sometimes I get it right :slight_smile:

I found my issue, thought maybe others might find this helpful since I couldn't locate a post here for it...Move this wherever you think it ought to go.

icceland commented 23 days ago

Open as root file
/usr/lib/python3/dist-packages/torbrowser_launcher/init.py

At the end of the file (lines 98 - 101) locate:

            gui.move(
                (desktop.width() - window_size.width()) / 2,
                (desktop.height() - window_size.height()) / 2
            )

Edit it to:

            gui.move(
                (desktop.width() - window_size.width()) // 2,
                (desktop.height() - window_size.height()) // 2
            )

As you see, the difference is replacing / with //.

Done.

1 Like