Repurpose the installtion app for it's original intent which was let apps report on their dependencies and if they were met. This commit removes two more Python dependencies: GitPython and psutil.

This commit is contained in:
Roberto Rosario
2015-04-01 13:19:39 -04:00
parent 3f8fe90787
commit 57fd943c9d
8 changed files with 49 additions and 164 deletions

View File

@@ -7,9 +7,10 @@ import sh
try:
pip = sh.Command('pip')
PIP = True
except sh.CommandNotFound:
PIP = False
else:
PIP = True
class PIPNotFound(Exception):