Installation Guide¶
This guide explains how to install morse-transcriber on your system.
The tool supports Python 3.8+ and works on Windows, macOS, and Linux.
Installing from PyPI (Recommended)¶
The easiest way to install is via pip:
pip install morse-transcriber
morse-transcriber --help
Installing from Source (Development Mode)¶
- Clone the repository:
git clone https://github.com/<your-organization>/morse-transcriber.git cd morse-transcriber
-
Create a virtual environment (recommended):
python -m venv .venv source .venv/bin/activate # macOS/Linux .venv\Scripts\activate # Windows
-
Install in editable mode:
pip install -e .
Verifying Installation¶
```bash
morse-transcriber --version
```
Troubleshooting¶
-
Command not found: Ensure your Python Scripts (Windows) or bin (Linux/macOS) directory is in your PATH.
-
Permission errors: Use --user with pip or install inside a virtual environment.