diff options
author | Pherkel | 2023-08-17 19:00:54 +0200 |
---|---|---|
committer | Pherkel | 2023-08-17 19:00:54 +0200 |
commit | 9aea3960dff8288aad426653cc872de03bae3251 (patch) | |
tree | 7f226e756b5d98dc7db58bc2fc68625ba316a6de | |
parent | 808ce8bea86c00cad9c653c5eda0fe1b5c9e3d29 (diff) |
Adding instructions on installing poetry
-rw-r--r-- | readme.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 |