Skip to content

Commit 95e2905

Browse files
committed
Add instructions for using venv.
1 parent 3f60d5d commit 95e2905

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/tutorials/contributing/setting_up_the_environment.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@ Setting up the environment
44
Installing all dependencies
55
---------------------------
66

7-
All testing dependencies can be installed by running::
7+
All dependencies can be installed by running::
88

99
$ pip install -r requirements.txt
1010

1111
It is recommended to do this using a virtual environment tool of your choice.
1212

13+
For example, when using the virtual environment library :code:`venv`::
14+
15+
$ python -m venv axelrod_development
16+
$ source axelrod_development/bin/activate
17+
$ pip install -r requrirements
18+
1319
The git workflow
1420
----------------
1521

0 commit comments

Comments
 (0)