Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fopeczek/loudreadingskill
Program for little humans to learn reading, potentially a module for SkillHub https://github.com/fopeczek/SkillHub
https://github.com/fopeczek/loudreadingskill
Last synced: about 2 months ago
JSON representation
Program for little humans to learn reading, potentially a module for SkillHub https://github.com/fopeczek/SkillHub
- Host: GitHub
- URL: https://github.com/fopeczek/loudreadingskill
- Owner: fopeczek
- Created: 2024-06-27T10:54:51.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-11-01T10:09:10.000Z (2 months ago)
- Last Synced: 2024-11-01T10:16:54.645Z (2 months ago)
- Language: Python
- Size: 3 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation
## Dependencies
This package requires `pyaudio` to capture sound from the microphone. `pyaudio` requires `portaudio19-dev` package to be installed on the system. On Ubuntu, this package can be installed via `apt` package manager.
```bash
sudo apt install portaudio19-dev
```## Main application
The recommended way to install this package is via `pipx`. `Pipx` is a tool to install Python packages globally in their own environment. Pipx can be installed on Ubuntu via `apt` package manager.
```bash
sudo apt install pipx
```Once `pipx` is installed, you can install this package via the following command:
```bash
pipx install git+https://github.com/fopeczek/LoudReadingSkill --python $(which python3.12)
```The `--python` flag is used to specify the Python version to use. This package requires Python 3.12 or newer. If your system already has Python 3.12 installed, you can omit the `--python` flag.