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
I get the following error message after importing the module:
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
in
6 import cvxopt
7 # https://pypi.org/project/PyLMI-SDP is used to formulate LMIs
----> 8 from lmi_sdp import LMI_PD as LMI, lmi_to_coeffs, to_cvxopt
9 from tf import transformations as tf
10 from robot_model import adjoint
~/.local/lib/python3.8/site-packages/lmi_sdp/__init__.py in
4
5 from .lm import *
----> 6 from .lmi import *
7 from .sdp import *
~/.local/lib/python3.8/site-packages/lmi_sdp/lmi.py in
9 from .lm import lm_sym_expanded
10
---> 11 from packaging import version
12
13
ModuleNotFoundError: No module named 'packaging'
Which can be fixed by also installing the packaging package, although the "correct" solution would probably be to add it as a dependency for this package...
The text was updated successfully, but these errors were encountered:
After using pip to install this package on Ubuntu 20.04:
I get the following error message after importing the module:
Which can be fixed by also installing the
packaging
package, although the "correct" solution would probably be to add it as a dependency for this package...The text was updated successfully, but these errors were encountered: