os
This commit is contained in:
parent
a5720bcb43
commit
4b09ebadc2
1 changed files with 7 additions and 7 deletions
14
re.sh
14
re.sh
|
@ -51,23 +51,23 @@ uv_venv() {
|
||||||
|
|
||||||
remove ~/.cache/pip ~/.local/share/uv
|
remove ~/.cache/pip ~/.local/share/uv
|
||||||
|
|
||||||
pip="${root}/venv.pip"
|
os="${root}/venv.os"
|
||||||
uv="${root}/venv"
|
uv="${root}/venv"
|
||||||
|
|
||||||
remove "${pip}" "${uv}"
|
remove "${os}" "${uv}"
|
||||||
|
|
||||||
python3 -m "venv" "${pip}"
|
python3 -m "venv" "${os}"
|
||||||
activate "${pip}"
|
activate "${os}"
|
||||||
list "${pip}"
|
list "${os}"
|
||||||
pip_install --upgrade "pip"
|
pip_install --upgrade "pip"
|
||||||
pip_install "uv"
|
pip_install "uv"
|
||||||
list "${pip}"
|
list "${os}"
|
||||||
|
|
||||||
uv_python "${uv}"
|
uv_python "${uv}"
|
||||||
uv_venv "${uv}"
|
uv_venv "${uv}"
|
||||||
|
|
||||||
deactivate
|
deactivate
|
||||||
# remove "${pip}"
|
# remove "${os}"
|
||||||
activate "${uv}"
|
activate "${uv}"
|
||||||
|
|
||||||
list "${uv}"
|
list "${uv}"
|
||||||
|
|
Loading…
Reference in a new issue