_install_uv


"/home/yossef/notes/git/scripts/_install_uv.md"

path: git/scripts/_install_uv.md

- **fileName**: _install_uv
- **Created on**: 2025-03-26 15:15:39

starting install uv for python now package manager

#!/usr/bin/env bash

_install() {
    # check if install or not
    if _commend_exists uv; then
        cecho "the pacakge found(uv)" green
        exit 0
    fi

    cecho "install uv now" green
    # On macOS and Linux.
    curl -LsSf https://astral.sh/uv/install.sh | sh

    if [[ $? == 0 ]]; then # check for errors
        cecho "installation compelete" green
    else
        cecho "error happend install" green
    fi
}

_install

continue:./_install_yay.md
before:./_install_tmp.md