-
Hi, Trying to build a new skill, and noticing that if I install the skill, say the hello world example, with "pip install -e ." ; then it cannot be loaded.
If I bdist_wheel build the skill and then install it, then everything works as expected. How do I install a skill during development to streamline change propagation? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
you can either use the old mycroft way, where you just git clone a skill into the folder and edit it live, then it should restart when changes are detected (no installing) or use ovos-workshop, you can launch a skill standalone in it's own process and restart as often as you need during development. This is similar to how skills are deployed in their own docker containers |
Beta Was this translation helpful? Give feedback.
you can either use the old mycroft way, where you just git clone a skill into the folder and edit it live, then it should restart when changes are detected (no installing)
or use ovos-workshop, you can launch a skill standalone in it's own process and restart as often as you need during development. This is similar to how skills are deployed in their own docker containers