From 9232a52fd6b0bd55c5adf12ae5e2ef5de85e65bc Mon Sep 17 00:00:00 2001 From: t0obz <52866113+t0obz@users.noreply.github.com> Date: Sat, 13 Jul 2019 15:41:10 -0700 Subject: [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 --- docs/source/devguide/tutorials/01-setup.md | 8 +++++--- 1 file 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: -- cgit