On Thu, May 25, 2023 at 4:11 PM Frank R. <
frank.re...@gmail.com> wrote:
>> How did you installed
>> the plugin?
>
>
> Downloading the zip, running setup.py and mv the egg to
>
>>
>> Check /usr/local/lib/python2.7/dist-packages
The copying egg file to directory is incorrect to install.
Use one of the following:
* pip install <archive.zip>
* easy_install <archive.zip>
* python setup.py install
* python setup.py bdist_egg && pip install dist/*.egg
* python setup.py bdist_egg && easy_install dist/*.egg