py
This commit is contained in:
parent
4b09ebadc2
commit
d4b83a1bfa
1 changed files with 9 additions and 9 deletions
18
re.sh
18
re.sh
|
@ -52,9 +52,9 @@ uv_venv() {
|
||||||
remove ~/.cache/pip ~/.local/share/uv
|
remove ~/.cache/pip ~/.local/share/uv
|
||||||
|
|
||||||
os="${root}/venv.os"
|
os="${root}/venv.os"
|
||||||
uv="${root}/venv"
|
py="${root}/venv"
|
||||||
|
|
||||||
remove "${os}" "${uv}"
|
remove "${os}" "${py}"
|
||||||
|
|
||||||
python3 -m "venv" "${os}"
|
python3 -m "venv" "${os}"
|
||||||
activate "${os}"
|
activate "${os}"
|
||||||
|
@ -63,18 +63,18 @@ pip_install --upgrade "pip"
|
||||||
pip_install "uv"
|
pip_install "uv"
|
||||||
list "${os}"
|
list "${os}"
|
||||||
|
|
||||||
uv_python "${uv}"
|
uv_python "${py}"
|
||||||
uv_venv "${uv}"
|
uv_venv "${py}"
|
||||||
|
|
||||||
deactivate
|
deactivate
|
||||||
# remove "${os}"
|
# remove "${os}"
|
||||||
activate "${uv}"
|
activate "${py}"
|
||||||
|
|
||||||
list "${uv}"
|
list "${py}"
|
||||||
|
|
||||||
pip_install "uv"
|
pip_install "uv"
|
||||||
|
|
||||||
list "${uv}"
|
list "${py}"
|
||||||
|
|
||||||
set \
|
set \
|
||||||
\
|
\
|
||||||
|
@ -106,6 +106,6 @@ set \
|
||||||
|
|
||||||
uv_install "${@}"
|
uv_install "${@}"
|
||||||
|
|
||||||
ln --symbolic "/rwx/rwx/rwx" "${uv}/lib/python"*"/site-packages/rwx"
|
ln --symbolic "/rwx/rwx/rwx" "${py}/lib/python"*"/site-packages/rwx"
|
||||||
|
|
||||||
list "${uv}"
|
list "${py}"
|
||||||
|
|
Loading…
Reference in a new issue