use pip for local installs

This commit is contained in:
j 2023-11-18 16:31:12 +01:00
parent 4ef8773562
commit 667ad0c9d5
1 changed files with 3 additions and 1 deletions

4
ctl
View File

@ -39,7 +39,9 @@ if [ "$action" = "init" ]; then
$SUDO git clone -b $branch https://git.0x2620.org/${package}.git src/${package}
fi
cd ${BASE}/src/${package}
$SUDO ${BASE}/bin/python setup.py develop
$SUDO ${BASE}/bin/pip install -e .
done
cd ${BASE}
$SUDO ./bin/pip install -r requirements.txt