THANK YOU for putting this together Marc.
I receive this error in the test file copied from the command line.
Python 3.9.1 (v3.9.1:1e5d33e9b9
[Clang 6.0 (clang-600.0.57)] on darwin
Type “help”, “copyright”, “credits” or “license” for more information.
from scamp import test_run
WARNING:root:pynput was not found; mouse and keyboard input will not be available.test_run.play(show_lilypond=True)
WARNING:root:abjad was not found; lilypond output will not be available.
Traceback (most recent call last):
File “”, line 1, in
File “/Users/kronic/Library/Python/3.9/lib/python/site-packages/scamp/test_run.py”, line 49, in play
score.show()
File “/Users/kronic/Library/Python/3.9/lib/python/site-packages/scamp/score.py”, line 633, in show
assert abjad() is not None, “Abjad is required for this operation.”
AssertionError: Abjad is required for this operation.
I believe I have Abjad installed, since I ran the following:
pip3 install --user abjad==3.1
and see the following:
Requirement already satisfied: abjad==3.1 in …
How can I overcome this issue?