13 lines
236 B
Python
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
|