Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pim/commands/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def install(packages, globally):
for name in packages:
try:
cmd = ['pip', 'install', name]
output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, universal_newlines=True)
if not output.startswith('Requirement already satisfied'):
installed += [name]
except subprocess.CalledProcessError as e:
Expand Down