]> git.lizzy.rs Git - torbrowser-launcher.git/blob - BUILD.md
updated BUILD.md for syntax
[torbrowser-launcher.git] / BUILD.md
1 # Building Tor Browser Launcher
2
3 First, clone the repository:
4
5 ```sh
6 git clone https://github.com/micahflee/torbrowser-launcher.git
7 cd torbrowser-launcher
8 ```
9
10 Then install dependencies, build a package, and install:
11
12 ### Debian, Ubuntu, Linux Mint, etc.
13
14 ```sh
15 sudo apt-get install build-essential python-all python-stdeb python-gtk2 python-psutil python-twisted python-lzma python-txsocksx wmctrl gnupg fakeroot xz-utils tor
16 ./build_deb.sh
17 sudo dpkg -i deb_dist/torbrowser-launcher_*.deb
18 ```
19
20 Optionally you can install `python-pygame` if you want to play a modem sound while Tor Browser is launching.
21
22 ### Red Hat, Fedora, CentOS, etc.
23
24 ```sh
25 sudo yum install python-psutil python-twisted wmctrl gnupg fakeroot rpm-build
26 ./build_rpm.sh
27 sudo yum install dist/torbrowser-launcher-*.rpm
28 ```
29
30 Optionally you can install `pygame` if you want to play a modem sound while Tor Browser is launching.
31
32 ### Run without installing
33
34 Install the dependencies: sadly, not all of them are available in virtualenv, so you will need to install (some of) them system-wide.
35 Then, you can run: `TBL_SHARE=share ./torbrowser-launcher`
36