Files
vaiola/pythonapp/Env/Env.py
Bacruru Sakaguchi 9e5e214944 initial commit
2025-09-12 17:10:13 +07:00

13 lines
236 B
Python

class Env:
def __init__(self):
self.pip_path = ""
pass
def create(self):
raise NotImplemented
def install_pkgs(self, pkgs: list, repo: str = None, extra: str = None):
raise NotImplemented