[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
This commit is contained in:
parent
23b3f144fc
commit
9232a52fd6
|
@ -16,8 +16,10 @@ system.
|
||||||
|
|
||||||
#### Build tools
|
#### Build tools
|
||||||
|
|
||||||
sudo apt install git intltool closure-compiler
|
sudo apt install git intltool closure-compiler python3-pip
|
||||||
pip install --user tox tox-venv
|
pip3 install --user tox tox-venv
|
||||||
|
|
||||||
|
You might need to add `~/.local/bin` to your PATH.
|
||||||
|
|
||||||
#### Runtime libraries and tools
|
#### 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
|
Creation of a [Python virtual environment] keeps the development isolated
|
||||||
and easier to maintain and Tox has an option to make this process easier:
|
and easier to maintain and Tox has an option to make this process easier:
|
||||||
|
|
||||||
tox -e denv3
|
tox -e denv
|
||||||
|
|
||||||
Activate virtual environment:
|
Activate virtual environment:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue