|
from streamcontroller_plugin_tools.installation_helpers import create_venv
|
|
from os.path import join, abspath, dirname
|
|
|
|
print("installing")
|
|
toplevel = dirname(abspath(__file__))
|
|
create_venv(join(toplevel, ".venv"), join(toplevel, "backend/requirements.txt")) |