Installation
Follow these steps to get started.
Clone the repository:
git clone https://github.com/AshrithSagar/EEG-Imagined-speech-recognition.git cd EEG-Imagined-speech-recognition
Install uv (recommended):
Install
uv
, if not already. Check here for installation instructions.It is recommended to use
uv
, as it will automatically install the dependencies in a virtual environment. If you don't want to useuv
, skip to the next step.TL;DR: Just run
curl -LsSf https://astral.sh/uv/install.sh | sh
Install dependencies:
The dependencies are listed in the pyproject.toml file.
Install the package in editable mode (recommended):
# Using uv uv pip install -e . # Or with pip pip install -e .
Additional packages
For Ubuntu: sudo apt-get install graphviz
For macOS (with Homebrew): brew install graphviz
For Windows: Download and install Graphviz from the Graphviz website.
Last updated
Was this helpful?