From 9aea3960dff8288aad426653cc872de03bae3251 Mon Sep 17 00:00:00 2001 From: Pherkel Date: Thu, 17 Aug 2023 19:00:54 +0200 Subject: Adding instructions on installing poetry --- readme.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/readme.md b/readme.md index 7e126d3..46a1192 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,19 @@ Automatic speech recognition model for the seminar spoken word recogniton 2 (SWR2) in the summer term 2023. # Installation +## Installing poetry +``` +// installing poetry with the provided install script +curl -sSL https://install.python-poetry.org | python3 - + +// adding poetry to your path +// Linux +echo export PATH="$HOME/.local/bin:$PATH" >> ~/.bashrc && source ~/.bashrc + +// Mac +echo export PATH="$HOME/.local/bin:$PATH" >> ~/.zshrc && source ~/.zshrc +``` + ## Running on cpu or m1 gpu ``` poetry lock && poetry install --with cpu -- cgit v1.2.3