evandrocoan / HighlightWords

A Sublime Text 2 & 3 plugin for highlighting mutiple words in different colors
https://github.com/seanliang/HighlightWords
4 stars 0 forks source link

Lark dependency? #1

Closed AnnanFay closed 2 years ago

AnnanFay commented 2 years ago

I'm getting the error ModuleNotFoundError: No module named 'lark' when the plugin is loaded.

I assume lark needs to be added to dependencies.json?

Let me know if you need more info or can't reproduce, could be something else.

AnnanFay commented 2 years ago

Not sure what the issue is but figured out how dependencies.json actually works so closing this for now while I debug some more.

evandrocoan commented 2 years ago

Additionally, the lark dependency is called pushdownparser on dependencies.json.

evandrocoan commented 2 years ago

I upped this package to Python 3.8 (because of a bug in lark and the new version of lark does not support Python 3.3 anymore) and the default package control yet does not support dependencies for python 3.8. It works for me because I added support to Python 3.8 dependencies on my fork on Package Control: https://github.com/evandrocoan/PackagesManager

AnnanFay commented 2 years ago

Thanks! Changing to use PackagesManager did fix the issue.