| 📦 Turbo Python 8d00593 k33g 6h ago | 1 | # Install `turbo-python` on macOS |
| 2 | |
| 3 | ```bash |
| 4 | # download the binary release in https://rickub.com/turbo-editors/turbo-python/releases |
| 5 | VERSION=1.0.3 |
| 6 | curl -fsSLO "https://rickub.com/turbo-editors/turbo-python/releases/download/v${VERSION}/turbo-python-${VERSION}-darwin-arm64" |
| 7 | chmod +x ./turbo-python-${VERSION}-darwin-arm64 |
| 8 | xattr -cr ./turbo-python-${VERSION}-darwin-arm64 |
| 9 | sudo rm /usr/local/bin/turbo-python |
| 10 | sudo cp ./turbo-python-${VERSION}-darwin-arm64 /usr/local/bin/turbo-python |
| 11 | ``` |