diff --git a/README.md b/README.md index d46c537..61cf8ca 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,18 @@ Make sure to configure poetry to install the virtual environment in the project poetry config virtualenvs.in-project true ``` +### Linux specific dependencies + +Please install the following packages first: +``` +sudo apt-get install xsel xclip +``` + +### Python dependency installation + Installing the virtual environment is done by running: ``` -poetry install +poetry install --no-root ``` ## Managing Dependencies diff --git a/src/main.py b/src/main.py index dc4a84e..5b16886 100644 --- a/src/main.py +++ b/src/main.py @@ -83,4 +83,4 @@ def build(self): if __name__ == '__main__': if hasattr(sys, '_MEIPASS'): resource_add_path(os.path.join(sys._MEIPASS)) - SpeechJokey().run() \ No newline at end of file + SpeechJokey(kv_file="SpeechJokey.kv").run() \ No newline at end of file