README: Add beta release installation instructions

- Add recommended beta installation section with direct GitHub release URL
- Simplifies user onboarding for v2.0.0-beta.3 testing
- Reorganized Quick Start with clear Development vs Release paths
This commit is contained in:
The BROKE Cluster Team
2025-09-21 13:59:00 +02:00
parent 4a8bcba9b4
commit 316c2f5585
+13 -1
View File
@@ -44,12 +44,24 @@ MLX Knife has been comprehensively tested and verified on:
## Quick Start
### Beta Release Installation (Recommended)
```bash
# Install latest beta release directly from GitHub
pip install https://github.com/mzau/mlx-knife/releases/download/v2.0.0-beta.3/mlxk_json-2.0.0b3-py3-none-any.whl
# Verify installation
mlxk2 --version # → mlxk2 2.0.0b3
```
### Development Installation
```bash
# Installation (local development)
git clone https://github.com/mzau/mlx-knife.git
cd mlx-knife
pip install -e .
```
# Install with development tools (ruff, mypy, tests)
pip install -e ".[dev,test]"
```