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
|
||||
|
||||
pip="${root}/venv.pip"
|
||||
os="${root}/venv.os"
|
||||
uv="${root}/venv"
|
||||
|
||||
remove "${pip}" "${uv}"
|
||||
remove "${os}" "${uv}"
|
||||
|
||||
python3 -m "venv" "${pip}"
|
||||
activate "${pip}"
|
||||
list "${pip}"
|
||||
python3 -m "venv" "${os}"
|
||||
activate "${os}"
|
||||
list "${os}"
|
||||
pip_install --upgrade "pip"
|
||||
pip_install "uv"
|
||||
list "${pip}"
|
||||
list "${os}"
|
||||
|
||||
uv_python "${uv}"
|
||||
uv_venv "${uv}"
|
||||
|
||||
deactivate
|
||||
# remove "${pip}"
|
||||
# remove "${os}"
|
||||
activate "${uv}"
|
||||
|
||||
list "${uv}"
|
||||
|
|
Loading…
Reference in a new issue