pygmentize missing MarkupSafe in -current
by gus3 from LinuxQuestions.org on (#58AF1)
On all of my systems (and they're all running -current) I get the following when running "pygmentize":
Code:$ echo Hello world | pygmentize
*** Error while highlighting:
pkg_resources.DistributionNotFound: The 'MarkupSafe>=0.9.2' distribution was not found and is required by the application
*** If this is a bug you want to report, please rerun with -v.I resolved the issue on my desktop with:
Code:$ su -
# pip install MarkupSafeand then the "echo | pygmentize" command ran properly.


Code:$ echo Hello world | pygmentize
*** Error while highlighting:
pkg_resources.DistributionNotFound: The 'MarkupSafe>=0.9.2' distribution was not found and is required by the application
*** If this is a bug you want to report, please rerun with -v.I resolved the issue on my desktop with:
Code:$ su -
# pip install MarkupSafeand then the "echo | pygmentize" command ran properly.