Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Erorr on Ubuntu 20.04 #667

Closed
PLMBakery opened this issue Dec 22, 2022 · 3 comments
Closed

Erorr on Ubuntu 20.04 #667

PLMBakery opened this issue Dec 22, 2022 · 3 comments

Comments

@PLMBakery
Copy link

brings up error 404

@ozgurYavuz
Copy link

I had the same issue on Ubuntu 22.10
I solved it by editing the "common.py" library file
The file was in "/usr/lib/python3/dist-packages/torbrowser_launcher/" for my case
The modifications done are:
from
tarball_filename = ( "tor-browser-" + arch + "-" + tbb_version + "_" + language + ".tar.xz"
to
tarball_filename = ( "tor-browser-" + arch + "-" + tbb_version + "_" + "ALL" + ".tar.xz"
basically setting the language to "ALL" instead of "en_US"

and
from
"tbb": { "changelog": tbb_local + "/tbb/" + self.architecture + "/tor-browser_" + language + "/Browser/TorBrowser/Docs/ChangeLog.txt", "dir": tbb_local + "/tbb/" + self.architecture, "dir_tbb": tbb_local + "/tbb/" + self.architecture + "/tor-browser_" + language, "start": tbb_local + "/tbb/" + self.architecture + "/tor-browser_" + language + "/start-tor-browser.desktop", }
to
"tbb": { "changelog": tbb_local + "/tbb/" + self.architecture + "/tor-browser" # <- + "/Browser/TorBrowser/Docs/ChangeLog.txt", "dir": tbb_local + "/tbb/" + self.architecture, "dir_tbb": tbb_local + "/tbb/" + self.architecture + "/tor-browser", # <- "start": tbb_local + "/tbb/" + self.architecture + "/tor-browser" + "/start-tor-browser.desktop", }
basically replacing every instance of " + "/tor-browser_" + language " to " + "/tor-browser" "

@davidbaumann
Copy link
Collaborator

Duplicate of #659

@davidbaumann davidbaumann marked this as a duplicate of #659 Dec 23, 2022
@thecowmilk
Copy link

@davidbaumann can we already fix this?? It happens way too often.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
4 participants