[Tex/LaTex] Package pgfkeys Error: I do not know the key ‘/tcb/library/most’

pgfkeys

I get the following error while compiling and the pdf is also not generated properly:

ERROR: Package pgfkeys Error: I do not know the key '/tcb/library/most' and I am going to ignore it. Perhaps you misspelled it.

The code which I compiled is available here as the accepted answer:
LaTeX errors in Formatting

I am using emacs for compilation.

Best Answer

According to tcolorbox documentation:

enter image description here

It seems, tcolorbox is trying to load some libraries that aren't there in your system. As for this particular code, you need only listings and breakable library, you can try to load only them by

\tcbuselibrary{listings,breakable}

instead of \tcbuselibrary{most}.

But the better solution is to update the tcolorbox package to the newest version.

Related Question