Skip to content

Commit

Permalink
Merge pull request #29 from HackXIt/deinhofer/linux-fixes
Browse files Browse the repository at this point in the history
Fix for running on linux (Deinhofer)
  • Loading branch information
HackXIt committed Feb 14, 2024
2 parents cff583a + 584ac62 commit ee48212
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ def build(self):
if __name__ == '__main__':
if hasattr(sys, '_MEIPASS'):
resource_add_path(os.path.join(sys._MEIPASS))
SpeechJokey().run()
SpeechJokey(kv_file="SpeechJokey.kv").run()

0 comments on commit ee48212

Please sign in to comment.