6 lines
249 B
Python
6 lines
249 B
Python
|
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, "requirements.txt"))
|