|
@@ -168,7 +168,8 @@ python3 labours.py [--style=white|black] [--backend=]
|
|
|
`--style` changes the background to be either white ("black" foreground) or black ("white" foreground).
|
|
|
`--backend` chooses the Matplotlib backend.
|
|
|
|
|
|
-To use matplotlib on macOS and avoid runtime errors, one can pin default backend by
|
|
|
+(required in macOS) you can pin the default Matplotlib backend with
|
|
|
+
|
|
|
```
|
|
|
echo "backend: TkAgg" > ~/.matplotlib/matplotlibrc
|
|
|
```
|
|
@@ -191,11 +192,12 @@ for the Linux kernel in "couples" mode is 1.5 GB and takes more than an hour / 1
|
|
|
parsed. However, most of the repositories are parsed within a minute.
|
|
|
1. To speed-up yaml parsing
|
|
|
```
|
|
|
- apt-get install yaml-cpp-dev
|
|
|
- #or
|
|
|
+ # Debian, Ubuntu
|
|
|
+ apt install libyaml-dev
|
|
|
+ # macOS
|
|
|
brew install yaml-cpp libyaml
|
|
|
|
|
|
- #you might need to re-install pyyaml for changs to take effect
|
|
|
+ # you might need to re-install pyyaml for changes to make effect
|
|
|
pip uninstall pyyaml
|
|
|
pip --no-cache-dir install pyyaml
|
|
|
```
|