]> git.lizzy.rs Git - torbrowser-launcher.git/blob - BUILD.md
Allow url_list
[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 install build-essential dh-python python3-all python3-stdeb python3-pyqt5 python3-gpg python3-requests python3-socks python3-packaging gnupg2 tor
16 ./build_deb.sh
17 sudo dpkg -i deb_dist/torbrowser-launcher_*.deb
18 ```
19
20 ### Red Hat, Fedora, CentOS, etc.
21
22 ```sh
23 sudo dnf install rpm-build python3-qt5 python3-gpg python3-requests python3-pysocks python3-packaging gnupg2 tor
24 ./build_rpm.sh
25 sudo yum install dist/torbrowser-launcher-*.rpm
26 ```
27
28 ### Run without installing
29
30 Install the dependencies: sadly, not all of them are available in virtualenv, so you will need to install (some of) them system-wide.
31 Then, you can run: `TBL_SHARE=share ./torbrowser-launcher`