Upon trying to install and test skinematics, I was getting the following error:
>>> import skinematics as skin
Failed to import optional module imus. Install optional dependencies
Failed to import optional module misc. Install optional dependencies
>>>
I edited __init.py__ to print the full error and discovered that tkinter was not installed. This commonly occurs on linux distributions where the system version of python does not come with tkinter (which is usually istalled by default). The solution for this is sudo apt install python3-tk or the equivalent command for your linux distro.
Upon trying to install and test skinematics, I was getting the following error:
I edited
__init.py__
to print the full error and discovered that tkinter was not installed. This commonly occurs on linux distributions where the system version of python does not come with tkinter (which is usually istalled by default). The solution for this issudo apt install python3-tk
or the equivalent command for your linux distro.