File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -79,21 +79,20 @@ $ sudo apt install python3-dev python-is-python3 build-essential doxygen
79
79
```
80
80
81
81
Python packages required for development are listed in ` python/requirements/development.txt ` .
82
- These can be installed using ` pip ` : :
82
+ These can be installed using ` pip ` . We recommend using an isolated environment as below :
83
83
84
84
``` bash
85
+ $ python3 -m venv env
86
+ $ source env/bin/activate
85
87
$ python3 -m pip install -r python/requirements/development.txt
86
88
```
87
89
88
- You may wish isolate your development environment using a `virtualenv
89
- < https://docs.python-guide.org/dev/virtualenvs/ > `_ .
90
-
91
90
A few extra dependencies are required if you wish to work on the
92
91
{ref}` C library <sec_development_c_requirements> ` .
93
92
94
93
For OSX and Windows users we recommending using
95
- [ conda] ( https://docs.conda.io/projects/conda/en/latest/ ) _ ,
96
- and isolating development in a dedicated environment as follows::
94
+ [ conda] ( https://docs.conda.io/projects/conda/en/latest/ ) ,
95
+ and isolating development in a dedicated environment as follows:
97
96
98
97
``` bash
99
98
$ conda env create -f python/requirements/development.yml
You can’t perform that action at this time.
0 commit comments