summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2016-06-10 17:28:37 -0700
committerMicah Lee <micah@micahflee.com>2016-06-10 17:28:37 -0700
commitcd2baff91f2a625c63110e87d9f02781d6d61e36 (patch)
treec87fb1d772663fa3ba32b3e479f2f4c27b85baa0
parent62e7035d3d605d4a55a671d894cd17b68b1f9245 (diff)
parent6894b5fb70dec97aaffef0752383970d6bdd7695 (diff)
downloadonionshare-cd2baff91f2a625c63110e87d9f02781d6d61e36.tar.gz
onionshare-cd2baff91f2a625c63110e87d9f02781d6d61e36.zip
Merge branch 'master' of https://github.com/PabloCastellano/onionshare into PabloCastellano-master
-rw-r--r--BUILD.md17
1 files changed, 15 insertions, 2 deletions
diff --git a/BUILD.md b/BUILD.md
index ebb33df7..4fec1946 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -11,10 +11,23 @@ cd onionshare
*For .deb-based distros (like Debian, Ubuntu, Linux Mint):*
-Note that python3-stem appears in Debian wheezy and newer, and it appears in Ubuntu 13.10 and newer. Older versions of Debian and Ubuntu aren't supported.
+Then install the needed dependencies:
```sh
-sudo apt-get install -y build-essential fakeroot python3-all python3-stdeb python3-flask python3-stem python3-pyqt5 dh-python
+sudo apt-get install -y python3-flask python3-stem python3-pyqt5
+```
+
+After that you can try both the CLI and the GUI version of OnionShare:
+
+```sh
+./install/scripts/onionshare
+./install/scripts/onionshare-gui
+```
+
+A script to build a .deb package and install OnionShare easily is also provided for your convenience:
+
+```sh
+sudo apt-get install -y build-essential fakeroot python3-all python3-stdeb dh-python
./install/build_deb.sh
sudo dpkg -i deb_dist/onionshare_*.deb
```