|
|
@ -35,6 +35,7 @@ class PackageManager: |
|
|
|
installed = list(map(lambda x: x.decode("UTF-8").split("=="), filter(lambda x: b'==' in x, p.stdout.read().splitlines()))) |
|
|
|
for name, version in installed: |
|
|
|
packages[name] = parse_version(version) |
|
|
|
logging.debug(f"[PackageManager] Picked up packages: {packages}") |
|
|
|
return packages |
|
|
|
|
|
|
|
def ensure_more(self, package_list, executable=sys.executable): |
|
|
@ -51,6 +52,7 @@ class PackageManager: |
|
|
|
# Assumption: there are more hits in the long run, than misses |
|
|
|
def ensure(self, package_string, executable=sys.executable): |
|
|
|
if not self.__has_package(package_string): |
|
|
|
logging.info(f"[PackageManager] Installing {package_string}") |
|
|
|
command = [executable, "-m", "pip", "install", package_string] |
|
|
|
with subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p: |
|
|
|
p.wait() |
|
|
@ -58,6 +60,8 @@ class PackageManager: |
|
|
|
sys.stdout.buffer.write(p.stderr.read()) |
|
|
|
raise(RunnerError(f"[PackageManager] Could not install dependencies ({p.returncode})")) |
|
|
|
self.package_list = self.__get_packages() |
|
|
|
else: |
|
|
|
logging.info(f"[PackageManager] {package_string} already installed") |
|
|
|
|
|
|
|
def __has_package(self, package_string): |
|
|
|
package_data = re.split("==|>|>=|<|<=", package_string) |
|
|
|