diff options
author | t0obz <52866113+t0obz@users.noreply.github.com> | 2019-07-14 00:41:10 +0200 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2019-11-12 16:36:52 +0100 |
commit | 9232a52fd6b0bd55c5adf12ae5e2ef5de85e65bc (patch) | |
tree | 3830367e1baee6f0e8e45d792914c6213c467b71 /docs | |
parent | [#3298|Core] Fix pickle loading non-ascii state error (diff) | |
download | deluge-9232a52fd6b0bd55c5adf12ae5e2ef5de85e65bc.tar.xz 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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/devguide/tutorials/01-setup.md | 8 |
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: |