Files
herolib/lib/lang/python/shell.v
2024-12-25 09:23:31 +01:00

15 lines
258 B
V

module python
import freeflowuniverse.herolib.osal
import freeflowuniverse.herolib.core.texttools
pub fn (py PythonEnv) shell(name_ string) ! {
_ := texttools.name_fix(name_)
cmd := '
cd ${py.path.path}
source bin/activate
'
osal.exec(cmd: cmd)!
}