1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-vps.git synced 2025-02-12 11:21:56 +00:00

Fix fastapi install on Debian 10

This commit is contained in:
Ycarus (Yannick Chabanois) 2023-07-11 19:10:46 +00:00
parent 8af0bed8c3
commit c91411a621

View file

@ -581,7 +581,11 @@ if [ "$OMR_ADMIN" = "yes" ]; then
#pip3 install pyjwt passlib uvicorn fastapi netjsonconfig python-multipart netaddr
#pip3 -q install fastapi netjsonconfig python-multipart uvicorn -U
pip3 -q install netjsonconfig
pip3 -q install fastapi -U
if [ "$ID" = "ubuntu" ] || ([ "$ID" = "debian" ] && [ "$VERSION_ID" = "10" ]); then
pip3 -q install fastapi==0.99.1 -U
else
pip3 -q install fastapi -U
fi
pip3 -q install jsonschema -U
pip3 -q install python-multipart jinja2 -U
pip3 -q install starlette