diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2019-12-20 09:00:27 +0100 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-12-23 14:20:29 +0900 |
commit | 7c50430474bd175aecb6f46f40921ec03eeb12e0 (patch) | |
tree | 0ba95a3fa0ff34a79a93d40649fcc9b6f4f433d9 | |
parent | a541758ba2935f3ef9c835c913698d42162f78af (diff) |
README.md: Add python3-textile install suggestion
Depending on your system, "pip install textile" may not work:
Traceback (most recent call last):
File "./scripts/myhtml.py", line 8, in <module>
import textile
ModuleNotFoundError: No module named 'textile'
You may have to install the distro's "python3-textile" package instead.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -70,6 +70,7 @@ You can add it by ## How to create Wiki ? It is easy ! just "wiki" -You need to install "textile" first +You need to install "textile" first, by using one of: > pip install textile + > sudo apt install python3-textile |