File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1+ env
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ tournament. To run the tournament, you simply need to:
2323
2424 $ python run_axelrod
2525
26- This automatically outputs a ``png `` file with the results. You can see
26+ This automatically outputs a ``svg `` file with the results. You can see
2727the results from the latest run of the tournament here:
2828
2929.. figure :: http://axelrod-python.github.io/tournament/assets/strategies_boxplot.svg
@@ -62,3 +62,29 @@ You can run with all available CPUs with:
6262::
6363
6464 $ python run_axelrod -p 0
65+
66+ To re run the full set of results and output them to the `assets ` directory
67+ simply run::
68+
69+ $ ./update_results.sh
70+
71+ **Note that this uses the installed version of the axelrod library. **
72+ If you want to keep things tidy you can create a virtualenv and install the
73+ latest version of the library like so::
74+
75+ $ virtualenv env
76+ $ source env/bin/activate
77+ $ pip install git+https://github.com/Axelrod-Python/Axelrod@master
78+
79+ If you have the Axelrod repository locally you can also run::
80+
81+ $ pip install path_to_axelrod
82+
83+ If you have already installed :code: `axelrod ` you can add the `-U ` tag to update
84+ to the latest version of master::
85+
86+ $ pip install git+https://github.com/Axelrod-Python/Axelrod@master -U
87+
88+ or::
89+
90+ $ pip install path_to_axelrod -U
You can’t perform that action at this time.
0 commit comments