You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print "No sequencer available for '%s' platform." % platform
should be updated to
print ("No sequencer available for '%s' platform." % platform)
to avoid this error when using pip install python-midi:
pip install python-midi
Collecting python-midi
Downloading python-midi-v0.2.4.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 1, in
File "C:\Users\owner-pc\AppData\Local\Temp\pip-build-wvrojn4c\python-midi\setup.py", line 42
print "No sequencer available for '%s' platform." % platform
^
SyntaxError: Missing parentheses in call to 'print'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\owner-pc\AppData\Local\Temp\pip-build-wvrojn4c\python-midi\
The text was updated successfully, but these errors were encountered:
yourGrigor
added a commit
to yourGrigor/python-midi
that referenced
this issue
May 4, 2017
The line in setup.py:
print "No sequencer available for '%s' platform." % platform
should be updated to
print ("No sequencer available for '%s' platform." % platform)
to avoid this error when using pip install python-midi:
pip install python-midi
Collecting python-midi
Downloading python-midi-v0.2.4.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 1, in
File "C:\Users\owner-pc\AppData\Local\Temp\pip-build-wvrojn4c\python-midi\setup.py", line 42
print "No sequencer available for '%s' platform." % platform
^
SyntaxError: Missing parentheses in call to 'print'
Command "python setup.py egg_info" failed with error code 1 in C:\Users\owner-pc\AppData\Local\Temp\pip-build-wvrojn4c\python-midi\
The text was updated successfully, but these errors were encountered: