β‘ uvΒΆ
Use uv to install mmore
OverviewΒΆ
uv is an extremely fast Python package and project manager, written in Rust.
It can be used as a replacement or wrapper around pip to speed up the installation and environment management.
π¦ Install uvΒΆ
Install uv with the standalone installers.
macOS and LinuxΒΆ
curl -LsSf https://astral.sh/uv/install.sh | sh
WindowsΒΆ
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
π οΈ Install mmore with uvΒΆ
First create a virtual environment at the repository location:
uv venv
source .venv/bin/activate
Then install mmore by using uv with the usual pip command:
uv pip install -e .
NotesΒΆ
Using uv is an alternative to a standard pip-based installation.
It can be useful when you want faster dependency installation or a more streamlined environment setup.