summaryrefslogtreecommitdiff
path: root/BUILD.md
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2016-02-12 14:34:19 -0800
committerMicah Lee <micah@micahflee.com>2016-02-12 14:34:19 -0800
commit170811f450b801c03111b1a6ae59ed9808d1bead (patch)
treecddee3ab9af40eb640156f9ae1f3ad4208b00df0 /BUILD.md
parentb2bda8294ac3e0af76cacdf3a3c02ae5a3740e0c (diff)
downloadonionshare-170811f450b801c03111b1a6ae59ed9808d1bead.tar.gz
onionshare-170811f450b801c03111b1a6ae59ed9808d1bead.zip
Porting onionshare from python2 to python3 (#261). This commit only ports the CLI version, not the GUI. Has not been tested in Fedora, Windows, or OSX. Removed hack to make unicode filenames work because hack does not work in python3. Replaced constant_time_compare function with a new one that works in python3. Tweaked hidden service checking code because urllib is different in python3.
Diffstat (limited to 'BUILD.md')
-rw-r--r--BUILD.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/BUILD.md b/BUILD.md
index 1c02c870..4604a6e2 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -11,10 +11,10 @@ cd onionshare
*For .deb-based distros (like Debian, Ubuntu, Linux Mint):*
-Note that python-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.
+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.
```sh
-sudo apt-get install -y build-essential fakeroot python-all python-stdeb python-flask python-stem python-qt4 dh-python
+sudo apt-get install -y build-essential fakeroot python3-all python3-stdeb python3-flask python3-stem python3-pyqt5 dh-python
./install/build_deb.sh
sudo dpkg -i deb_dist/onionshare_*.deb
```