summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authort0obz <52866113+t0obz@users.noreply.github.com>2019-07-13 15:41:10 -0700
committerCalum Lind <calumlind+deluge@gmail.com>2019-11-12 15:36:52 +0000
commit9232a52fd6b0bd55c5adf12ae5e2ef5de85e65bc (patch)
tree3830367e1baee6f0e8e45d792914c6213c467b71
parent23b3f144fce3424ae874d54a659cb7b8dd624ade (diff)
downloaddeluge-9232a52fd6b0bd55c5adf12ae5e2ef5de85e65bc.tar.gz
deluge-9232a52fd6b0bd55c5adf12ae5e2ef5de85e65bc.tar.bz2
deluge-9232a52fd6b0bd55c5adf12ae5e2ef5de85e65bc.zip
[Docs] Update dev environment instructions
I'm going through these instructions on a clean Ubuntu 19.04 VM These are the changes I needed to make to get Deluge to build/run
-rw-r--r--docs/source/devguide/tutorials/01-setup.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/source/devguide/tutorials/01-setup.md b/docs/source/devguide/tutorials/01-setup.md
index da634d588..81c64fda1 100644
--- a/docs/source/devguide/tutorials/01-setup.md
+++ b/docs/source/devguide/tutorials/01-setup.md
@@ -16,8 +16,10 @@ system.
#### Build tools
- sudo apt install git intltool closure-compiler
- pip install --user tox tox-venv
+ sudo apt install git intltool closure-compiler python3-pip
+ pip3 install --user tox tox-venv
+
+You might need to add `~/.local/bin` to your PATH.
#### Runtime libraries and tools
@@ -39,7 +41,7 @@ Download the latest git code to local folder.
Creation of a [Python virtual environment] keeps the development isolated
and easier to maintain and Tox has an option to make this process easier:
- tox -e denv3
+ tox -e denv
Activate virtual environment: