From 3c3e4dd0473a08443014867bc3d246115bd455db Mon Sep 17 00:00:00 2001 From: Ziad-I <68874104+Ziad-I@users.noreply.github.com> Date: Wed, 19 Jun 2024 13:17:29 +0300 Subject: [PATCH] add pip install python-socketio and aiohttp in makefile --- src/blenderbim/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/blenderbim/Makefile b/src/blenderbim/Makefile index a870eac702..8009007711 100644 --- a/src/blenderbim/Makefile +++ b/src/blenderbim/Makefile @@ -213,7 +213,8 @@ endif # Required by IFC4D cd dist/working && . env/bin/activate && $(PIP) install PyP6Xer --target=./site-packages # Required by Web module - cd dist/working && . env/bin/activate && $(PIP) install socketio --target=./site-packages + cd dist/working && . env/bin/activate && $(PIP) install python-socketio[asyncio_client] --target=./site-packages + cd dist/working && . env/bin/activate && $(PIP) install aiohttp --target=./site-packages cp -r dist/working/site-packages/* dist/blenderbim/libs/site/packages/ rm -rf dist/working