I am trying to install octoprint on ubuntu 18 using python 3.7 The installation fails with the message:
ModuleNotFoundError: No module named 'wrapt'
I naturally tried installing
pip3 install wrapt
And it fails too with the same message. It looks like I am in a loop where I need wrapt, but wrapt needs itself.
please advise
If your using an Anaconda Virtiual Enviorment try using
conda install wrapt
That worked for me.