Welcome to Cadabra Q&A, where you can ask questions and receive answers from other members of the community.
0 votes

While using command 'complete', I am getting an error saying:

Traceback (most recent call last): File "$<$string>", line 1, in $<$module> ImportError: No module named 'sympy'

in General questions by

1 Answer

+2 votes

In order to use any of the component functionality you need to have the sympy Python package installed. On most systems this is done with

 sudo pip3 install sympy

(see the github page for some more system-specific info in case the above does not do the trick).

by (76.4k points)
...