瀏覽代碼

Update the readme

Vadim Markovtsev 7 年之前
父節點
當前提交
8a04115665
共有 1 個文件被更改,包括 6 次插入4 次删除
  1. 6 4
      README.md

+ 6 - 4
README.md

@@ -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
    ```